Ant Design of Vue —— Table表格组件 —— 设置动态表头
时间:2019-12-25 15:44:19
收藏:0
阅读:3110
Column配置
比如:操作列
{
key: ‘action‘,
scopedSlots: { customRender: ‘action‘, title: ‘变量名‘ },
align: ‘center‘
}
代码段
<template slot="变量名">{{动态表头名称}}</template>
原文:https://www.cnblogs.com/duoer/p/12096895.html
评论(0)