antdv坑 - table组件 slot无效

仿照官方文档第一个例子写了一下,发现没有生效,排查了半天,发现是:
column各属性如果同时定义了属性本身和其对应的slot属性的话,则优先生效属性本身,因此slot属性无效


    


const columns = [{
    title: '名称',
    key: 'name',
    dataIndex: 'name',
    slots: { title: 'titleFill' }, // 此时titleFill不生效,表头还是会展示“名称”,而不是"- a名称 -"
    scopedSlots: { customRender: 'nameFill' }
}]

你可能感兴趣的:(前端,antd,vue.js,组件库,antdesign)