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

如何自定义节点的渲染内容 #41

Closed fangchao1004 closed 1 year ago

fangchao1004 commented 1 year ago

image 只看到一个render属性,要求是一个function,但是vue不像react那样可以在函数中返回node节点。请问有具体的解决方案吗?

ChuChencheng commented 1 year ago

vue 是可以返回 JSX 的,可以参考这个例子:https://github.com/wsfe/ctree/blob/dev/examples/InsertRenderTree.vue 以及 vue2 文档:https://v2.cn.vuejs.org/v2/guide/render-function.html#JSX

fangchao1004 commented 1 year ago

谢谢大佬