phphe/he-tree-vue

Tree data field where path is its property

Opened this issue · 4 comments

May I have an example on giving the tree data let's say a sort field, where this field is tree component's path property?
Ex. { name: "Category 1", sort: [0, 1, 1, 1] }

phphe commented

I'm sorry, I'm confused about what you're saying. No sort field. There is a node path variable, it is node position, can be access by scoped slot.

<span slot-scope="{node, index, path, tree}">
  <b>{{index}}</b>
  Title: {{node.title}}
  - path: <i>{{path.join(',')}}</i>
</span>

Type: Array
Detail: Node position in TreeData. Starting from the highest second level, the serial number of each level in the parent.
Example: [{text: 'node 1'}, {text: 'node 2', children: [{text: 'node 3'}]}], path of 'node 3' is [1, 0]

Sorry for not explaining too well, what I was trying to say is that I want my tree data elements to have a property where the value is the node position (node path variable you were talking about).

phphe commented

tree only reads nested data, and exports nested data, like this:

[{text: 'node 1'}, {text: 'node 2', children: [{text: 'node 2-1'}]}]

If your data is not nested and use property to store structure, like parent_id, you need transform the data before pass into tree.

Ok thanks, thought would be great to be able to store/save the path variable.