这篇文章主要为大家详细介绍了对Vue table 动态表格td可编辑的方法分析,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
【图片暂缺】
【图片暂缺】
element UI 组件table表格中 增加template 模版
根据业务逻辑增加全局变量 isEdit 是否变化。
代码如下:
<el-table-column
label="名称"
width="140">
<template scope="scope">
<el-input v-if="scope.row.isEdit && scope.row.status === 0" v-model="scope.row.name" ></el-input>
<label v-if="scope.row.status === 1" class="indisable">{{scope.row.name +'(已禁用)' || '--'}}</label>
<label v-if="!scope.row.isEdit && scope.row.status === 0">{{scope.row.name || '--'}}</label>
</template>
</el-table-column>
代码如下:
edit (val) {
this.initUpdateVal = val.name
val.isEdit = true
},
以上这篇对Vue table 动态表格td可编辑的方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持四海网。
本文来自:http://www.q1010.com/184/5717-0.html
注:关于对Vue table 动态表格td可编辑的方法分析的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:vue.js
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。