1Use @select (for select a new element from array) and @remove (for delete element from array)
2
3Example: <multiselect @select="selectionChange" @remove="removeElement" required>
4
5In vue methods add:
6this.$forceUpdate(); will update the state
7
8 methods: {
9 removeElement() {
10 this.$forceUpdate();
11 },
12 selectionChange() {
13 this.$forceUpdate();
14 },
15 }
16