Xinxin

Results 155 comments of Xinxin
trafficstars

This may not be caused by the tree. Could you create a reproduce in codesandbox?

It is not possible to write a tree inside table.

It does not support such operations.

@ddenev what's your vue version

you may have wrong version. For vue2: `npm i -P he-tree-vue@2`, vue3: `npm i -P he-tree-vue@3`

yes. The node can be moved freely between multiple trees with pro plugin.

```js ondragend(store) { console.log(store.startPath); console.log(store.targetPath); console.log(store.targetPath.parent[store.targetPath.index]) // In ondragend hook, data is not modified yet, so it should be node 1 // targetPath structure /* { tree: Draggable; parent?: Node;...

`const startItems = startTree[startPath[0]].children[startPath[1]].children;` startPath is not array, it is object. This may help, when ondragend hook be called, data is still not changed. in event `drop`, the data is...