vue-treeselect
vue-treeselect copied to clipboard
How to display No of Selected Options in the Input Box than value of Selected Label ?
trafficstars
Can we able to display No of Selected options in the input box than value of selected label ?
Some thing like this

You need to have array of objects, something like:
const options = [{id: 1, label: '1 - Selected label'}, {id: 2, label: '2 - Selected label'}]
and then
<treeselect :options="options" />