<el-table-column
label="操作"
fixed="right"
:render-header="tableAction"
width="120">
<template slot-scope="scope">
</template>
</el-table-column>
在自定义表格中使用‘:render-header’属性,值为定义的方法
//表格操作提示
tableAction() {
return this.$createElement('HelpHint', {
props: {
content: '编辑车辆 / 删除车辆'
}
}, '操作');
},
HelpHint为定义的外部组件
import HelpHint from ‘~/components/HelpHint/HelpHint.vue';
引入后需要声明,注意声明的名字和引入定义的名字是否相同和大小写是否一直
HelpHint.vue内容
<template>
<span>
<span style="margin-right: 8px"><slot></slot></span>
<el-tooltip :content="content" :placement="placement">
<i class="el-icon-question" style="cursor: pointer;"></i>
</el-tooltip>
</span>
</template>
<script>
export default {
name: 'HelpHint',
props: {
placement: {
default: 'top'
},
content: String,
},
data() {
return {}
},
}
</script>