更多
{{ item.name }}
父组件
import CommonTable from "frontelementpackage/src/CommonTableDropdown.vue";
html 中
data中
tableDropdown: [
{id:1,name:'测试1'},
{id:2,name:'测试2'},
{id:3,desc:'测试3'}
],
tableLabel: [
{
prop: "name",
label: "账户名字",
width: 100,
},
{
prop: "status",
label: "状态",
width: 200,
},
],
tableData: [{
name:"测试",
status:1
}],
method中
@edit=是必须要的
editUser(row,methods) {
console.log(row,methods)
},