vue-treeselect icon indicating copy to clipboard operation
vue-treeselect copied to clipboard

How to display No of Selected Options in the Input Box than value of Selected Label ?

Open binumathew opened this issue 3 years ago • 1 comments
trafficstars

Can we able to display No of Selected options in the input box than value of selected label ?

Some thing like this

Screenshot Capture - 2021-12-05 - 21-20-42

binumathew avatar Dec 05 '21 15:12 binumathew

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" />

TitanFighter avatar Dec 06 '21 17:12 TitanFighter