在Vue.js中,可以使用Element UI库中的el-table
组件来实现行内的增删改操作。以下是一个简单的示例,展示了如何实现这些功能:
<template>
<div>
<el-button @click="addRow">添加</el-button>
<el-table :data="tableData" style="width: 100%">
<el-table-column prop="date" label="日期" width="180"></el-table-column>
<el-table-column prop="name" label="姓名" width="180"></el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button @click="editRow(scope.$index, scope.row)">编辑</el-button>
<el-button @click="deleteRow(scope.$index, scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
</div>
</template>
<script>
export default {
data() {
return {
tableData: [
{
date: '2016-05-02',
name: '王小虎',
},
// ... 可以添加更多行数据
],
};
},
methods: {
addRow() {
// 添加行的逻辑
let newRow = { date: '新日期', name: '新姓名' };
this.tableData.push(newRow);
},
editRow(index, row) {
// 编辑行的逻辑
// 例如显示一个弹窗让用户编辑
},
deleteRow(index, row) {
// 删除行的逻辑
this.tableData.splice(index, 1);
},
},
};
</script>
在这个示例中,我们定义了一个tableData
数组来存储表格的数据。el-table
组件的:data
属性绑定到这个数组,以显示表格内容。每行后面的操作列包含两个按钮,分别用于编辑和删除行。点击添加按钮会向表格中添加一行新数据,编辑和删除按钮则调用对应的方法来处理行内数据。