We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The first time you create data into a tree structure, by the Depth4 {node.state = expanded: true}
{node.state = expanded: true}
[Depth1] node.state = expanded: false
ex) Current this.$refs.tree.find({text:depth4 ,state: {expanded: true} }); ↓ text: depth1~3 ... <- state: {expanded: false}
i want this.$refs.tree.find({text:depth4 ,state: {expanded: true} }); ↓ text: depth1~3 ... <- state: {expanded: true}
I want to do this. How do I do this?
Always Thank you.
The text was updated successfully, but these errors were encountered:
Sorry, but I didn't get you. Can you show me a real example?
Sorry, something went wrong.
yes! but I've solved it in a different way.
ex) Tree Structure
▼ 1 ....▼ 1-1 ........▼1-1-1 ............▶1-1-1-1 ........▶1-1-2 .....▼ 1-2 ........▼1-2-1 ......▶ 1-3
[Current Tree] ▼ 1 ....▶ 1-1 ....▶ 1-2 ....▶ 1-3
[What I did] let dethp4 = this.$refs.tree.find({text: '1-1-1-1'}); dethp4.state.expanded = true;
[i want] ▼ 1 ....▼ 1-1 .......▼1-1-1 ..........▶1-1-1-1 .......▶1-1-2 ....▶ 1-2 ....▶ 1-3
:D
Cool :)
Me too
No branches or pull requests
The first time you create data into a tree structure,
by the Depth4
{node.state = expanded: true}
[Depth1]
node.state = expanded: false
ex) Current
this.$refs.tree.find({text:depth4 ,state: {expanded: true} });
↓
text: depth1~3 ... <- state: {expanded: false}
i want
this.$refs.tree.find({text:depth4 ,state: {expanded: true} });
↓
text: depth1~3 ... <- state: {expanded: true}
I want to do this. How do I do this?
Always Thank you.
The text was updated successfully, but these errors were encountered: