1For updating the array from vue multiselect use @select and @remove events
2
3Example: <multiselect @select="selectionChange" @remove="removeElement"> </multiselect>
4
5Into methods add the next functions
6methods: {
7 removeElement() {
8 this.$forceUpdate();
9 },
10 selectionChange() {
11 this.$forceUpdate();
12 },
13}
14
15this.$forceUpdate(); will update the state.