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>
本文来自博客园,作者:喵师傅,转载请注明原文链接:https://www.cnblogs.com/wywblogs/p/15403405.html