In the tree view component, I would like to open all the nodes where there is some search text. But the expected is not happening.
Desired output: Open all the parents where there's some search text.
Here's the codepen for the same.
https://codepen.io/anon/pen/MdxPKN?&editors=101
<div id="app">
<v-container grid-list-md>
<v-layout wrap>
<v-flex xs6>
<v-text-field label="search" v-model="search" box />
<v-treeview :items="tree"
:search="search"
active-class="grey lighten-4 indigo--text"
item-key="name"
open-on-click
:open-all="{searchLength}>0?true:false"
hoverable />
</v-flex>
</v-layout>
</v-container>
</div>
truewill cause all branch nodes to be opened when component is mounted . - Core972openprop, that should work - Borjanteopenprop. That should work - Borjante