如何给el-table-column添加自定义属性
时间: 2024-02-19 15:56:24 浏览: 227
要给 `el-table-column` 添加自定义属性,可以使用 `props` 属性来实现。下面是一个示例代码:
```html
<template>
<el-table :data="tableData">
<el-table-column prop="name" label="Name"></el-table-column>
<el-table-column prop="age" label="Age"></el-table-column>
<el-table-column label="Custom Attribute">
<template slot-scope="scope">
<span>{{ scope.row.customAttr }}</span>
</template>
</el-table-column>
</el-table>
</template>
<script>
export default {
data() {
return {
tableData: [
{ name: 'John', age: 25, customAttr: 'Custom Value 1' },
{ name: 'Jane', age: 30, customAttr: 'Custom Value 2' },
{ name: 'Bob', age: 35, customAttr: 'Custom Value 3' }
]
};
}
};
</script>
```
在上面的代码中,我们在 `el-table-column` 中添加了一个自定义的列,通过使用 `slot-scope` 来访问每一行的数据,并显示自定义属性 `customAttr` 的值。
阅读全文