Is it possible to add a tree like here with components? I have a structure with organisations, organisation units and section. I want to show them organised.
It temporary looks like this:

One input-group example:
<b-input-group prepend="Org">
<b-form-input v-model="org.name"></b-form-input>
<b-input-group-append>
<b-btn variant="outline-danger">Delete</b-btn>
<b-btn v-on:click="editOrg(org.id, org.name)" variant="outline-success">Save</b-btn>
</b-input-group-append>
</b-input-group>