antd 自定义表头slots.title不生效
时间:2020-04-16 17:07:48
收藏:0
阅读:391
原因:columns.title优先级别比slots.title高,所以优先显示title文字了!也就是说!!不能共存!!!
{ title: ‘序号‘, slots: { title: ‘$order‘ } },
改成
{ slots: { title: ‘$order‘ } },
就好了!
原文:https://www.cnblogs.com/mankii/p/12713956.html
评论(0)