<template>
<el-table
:data="tableData"
style="width: 100%">
<el-table-column
prop="date"
label="日期"
width="180">
<template #default="{row,$index}">
<input type="text" v-model="row.date" v-show="row.display" />
<span v-show="!row.display">{{row.date}}</span>
</template>
</el-table-column>
<el-table-column
prop="name"
label="姓名"
width="180">
</el-table-column>
<el-table-column label="操作" width="180">
<template #default="{row,$index}">
<el-button type="warning" @click="edit(row)">编辑</el-button>
<el-button type="danger" @click="save(row)">保存</el-button>
</template>
</el-table-column>
</el-table>
</template>
<script>
export default {
data() {
return {
tableData: [{
date: '2016-05-02',
name: '王小虎'
}, {
date: '2016-05-04',
name: '王小虎'
}]
}
},
methods: {
edit(row, index) {
row.display = true;
},
save(row, index) {
row.display = false;
}
}
}
</script>
【vue3】可编辑el-table
陈晓明start2023-10-10 11:21
相关推荐
刘发财2 小时前
前端2秒生成500页矢量PDF,rust真的强到没朋友梦想平凡3 小时前
百游棋牌源代码开发搭建教程(十):隔离部署、备份恢复与双端验收kyriewen6 小时前
我花3天抓了一个幽灵bug,凶手藏在第4层Bs_MoneyMagnet7 小时前
基于springboot+vue的生态果园采摘预约系统的设计与实现 源码+文档mONESY8 小时前
LangGraph.js 从零上手:把 Agent 工作流从一条线变成一张网默_笙8 小时前
⚓ AI 的"官方答题卡":withStructuredOutput 与结构化输出的终局之战我家猫叫佩奇9 小时前
🦭 厌倦了千篇一律的线性图标?Naive Icons 正式开源the局外人11 小时前
掌控自己的 K 线数据:TradingView 本地部署与数据源接入梦诺12 小时前
vue3 keepAlive+记录滚动条Bs_MoneyMagnet13 小时前
基于springboot+vue的会议室预约管理系统的设计与实现 源码+文档