I have a list of items in a Vuex state.
According to the image when I checked items the main state would be updated using v-on:change
and too in the sidebar but when I toggle down using v-on:change
(side bar) the Vuex state changes but the checkbox has value!!!
how to handle it using two-way data binding in such a scenario?
best regards.
:value
and handle the@input
event to update the Vuex store. – IVO GELOV