riophae / vue-treeselect

A multi-select component with nested options support for Vue.js
https://vue-treeselect.js.org/
MIT License
2.9k stars 508 forks source link

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

Open binumathew opened 2 years ago

binumathew commented 2 years ago

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

TitanFighter commented 2 years ago

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