antd-vue(数选择加图标+treeIcon的配置)==》巨坑,⽂档
⾥完全没有
效果图:
1.代码部分
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15<a-tree-select
treeIcon
:treeData="treeData"
v-model="value"
treeCheckable
:showCheckedStrategy="SHOW_PARENT"          searchPlaceholder="Please select"
>
<template  slot-scope="text"slot="title">
<a-icon type='cluster'/>
{{text.value}}
</template>
</a-tree-select>
2.数据部分 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19const SHOW_PARENT = TreeSelect.SHOW_PARENT;
const treeData = [
{
value: '0-0',
key: '0-0',
scopedSlots: {
title: 'title'
},
children: [
{
title: 'Child Node1',
value: '0-0-0',
key: '0-0-0',
},
],
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44      ],
},
{
title: 'Node2',
value: '0-1',
key: '0-1',
children: [
{
title: 'Child Node3',          value: '0-1-0',
key: '0-1-0',
disabled: true,
icon图标库},
{
title: 'Child Node4',          value: '0-1-1',
key: '0-1-1',
},
{
title: 'Child Node5',          value: '0-1-2',
key: '0-1-2',
},
]
,
},
];

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。