<el-table-column width="55" type="checkbox"> <template> <el-checkbox></el-checkbox> </template> </el-table-column>头部加个单选框怎么加
时间: 2024-02-16 22:04:31 浏览: 365
el-tree创建结构线,并且可拖动
如果你想在这个表格列的头部添加一个单选框,可以在 el-table-column 组件内部添加一个 slot="header" 的 template 标签,并在其中自定义表头内容。具体代码如下:
```html
<el-table-column width="55" type="checkbox">
<template slot="header">
<el-checkbox></el-checkbox>
<el-radio></el-radio>
</template>
<template>
<el-checkbox></el-checkbox>
</template>
</el-table-column>
```
这样就在表头中添加了一个复选框和一个单选框。需要注意的是,因为复选框和单选框都是表头的一部分,所以需要将它们都放在 slot="header" 的 template 标签内部。
阅读全文