Ant Design槽位失效

保证数据结构中有scopedSlots: { title: 'title' },

即包含scopedSlots属性

使用时名字应保证一致

例如:

数据结构:

treeData: [
  {
    key: '0-0',
    title: '表',
    scopedSlots: { title: 'title' },
    children: []

}

页面槽位:

<template slot='title' slot-scope={title}>
  <span v-html="title.replace(new RegExp(searchValue,'g'),'<span style=color:#f50>'+ searchValue +'</span>')"></span>
</template>

posted @ 2021-10-13 18:12  喵师傅  阅读(284)  评论(0编辑  收藏  举报