Ant Design of Vue —— Table表格组件 —— 设置动态表头
Column配置
比如:操作列
{
key: ‘action‘,
scopedSlots: { customRender: ‘action‘, title: ‘变量名‘ },
align: ‘center‘
}
代码段
<template slot="变量名">{{动态表头名称}}</template>
文章来自:https://www.cnblogs.com/duoer/p/12096895.html