kamil-lip / bootstrap-vue-treeview

A treeview component for Bootstrap and Vue.js 2.0+
MIT License
43 stars 30 forks source link

Expand by default feature request #19

Open peter-ungvari opened 4 years ago

peter-ungvari commented 4 years ago

Is there a way to show all items expanded by default? A prop for this would be very useful and much appreciated to make it easier. Thanks.

apydevs commented 3 years ago

this can be achieved by using CSS

<style>
.tree-node-children{
     display: revert !important;
}
</style>
rishpandey commented 3 years ago

this can be achieved by using CSS

<style>
.tree-node-children{
     display: revert !important;
}
</style>

The folding unfolding on items stops working after this.