Skip to content
On this page

dft-note-tree 定制节点内容

note-tree 提供了两个 slot,可以用于自定义 icon 图标及内容显示区域。

定制 icon 图标

vue
<dft-note-tree>
  <template #note-tree-icon="{ item }">
    <div>自定义icon</div>
  </template>
 </dft-note-tree>

定制内容

vue
<dft-note-tree>
  <template #note-tree-content="{ item }">
    <div>自定义内容</div>
  </template>
</dft-note-tree>

插槽介绍

插槽名称插槽说明插槽返回值
note-tree-iconicon插槽当前行的详细信息
note-tree-content内容插槽当前行的详细信息

item 参数详情

参数名称参数说明类型
id当前审阅IDString
nodeID当前审阅绑定的节点idString|undefined
nodeName当前审阅绑定的节点名称String|undefined
title当前审阅名称String