Xinxin

Results 166 comments of Xinxin

will support. it will use native drag and drop api in next version.

```js import * as hp from "helper-js"; hp.walkTreeData( stat, (childStat, index, parent, path) => { childStat.hidden = false; }, { childrenKey: "children" } ); ```

Maybe you can try close vue devtools.

Could you provide a reproduce?

vue-draggable-nested-tree doon't use html5 drag. it just moves the element by 'position: absolute'. the dragging node element '.tree-node' has a class 'dragging'. you can custom its style by define the...

the dragging node has a class 'dragging', so you can add css ```css .tree-node.dragging{ opacity: 1!important; } ```

import {Tree, TreeNode, DraggableTree, DraggableTreeNode} from 'vue-draggable-nested-tree' check https://github.com/phphe/vue-draggable-nested-tree#import

you may want import {Tree} from 'vue-draggable-nested-tree' or import {DraggableTree} from 'vue-draggable-nested-tree'

Tree, TreeNode can't be dragged. Tree, TreeNode, DraggableTree, DraggableTreeNode are exposed for who want extend them. sorry, I can't understand the third paragraph.

It may be unnecessary to use recursive components. However, the name of TreeNode and DraggableTreeNode is `TreeNode`.