0👍
Don’t do both v-model
and v-on:change
. You’re sending this.currentCompany
, which I think is supposed to be selectedCompany
. If the idea is to send the value when it changes, put a watch
on the value, not on the widget. The widget feeds the value, the value feeds the store.
Source:stackexchange.com