wsfe / vue-tree

使用虚拟列表优化的 Vue 树组件 Vue tree component optimized using virtual list
https://wsfe.github.io/vue-tree/
MIT License
196 stars 38 forks source link

建议增加节点渲染的slot #71

Closed Dr-Harris closed 4 months ago

Dr-Harris commented 1 year ago

树节点可能会渲染比较复杂的DOM结构,通过slot放在template中会比 render 方法更加直观 参考element-plus的使用方式:

<VTree>
  <template #node={ node }>
    <div class="custom-node">{{ node.name }}</div>
  </template>
</VTree>
zhoushengdong commented 11 months ago

同感!

Dr-Harris commented 4 months ago

@zhoushengdong 4.0.0已更新