Interested in the question of how to associate a checkbox with multiselect on Vue. For example, in multiselect there are certain categories. The same categories are repeated in the checkbox. It is necessary with the active checkbox to make the active item in the list. It should turn out as in the photo that is attached.
Jsfiddle code.
let vm = new Vue({ components: { Multiselect: VueMultiselect.default }, data() { return { listCategory: ['Категория 1', 'Категория 2', 'Категория 3', 'Категория 4', 'Категория 5', 'Категория 6', 'Категория 7'], valueCategory: [], } }, el: "#main-app", })