<legno-multiselect
label="Fruit"
:items="fruit"
:selectedValues="selectedFruit" />
data: {
fruit: [
{ value: 1, text: 'Apple', bottomText: 'Price: $1.20', buttonText: 'Remove' },
{ value: 2, text: 'Orange', bottomText: 'Price: $2', buttonText: 'Remove' },
{ value: 3, text: 'Banana', bottomText: 'FREE', buttonText: 'Remove' }
],
selectedFruit: [ 1 ]
}
INFO
This component is only available as a Vue.js component.