bootstrap-vue-treeview icon indicating copy to clipboard operation
bootstrap-vue-treeview copied to clipboard

Expand by default feature request

Open peter-ungvari opened this issue 5 years ago • 2 comments

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.

peter-ungvari avatar Apr 27 '20 20:04 peter-ungvari

this can be achieved by using CSS

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

apydevs avatar Oct 21 '20 08:10 apydevs

this can be achieved by using CSS

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

The folding unfolding on items stops working after this.

rishpandey avatar Dec 11 '20 14:12 rishpandey