2
I am with the following doubt, I have some inputs linked to Vuex states:
<input class="form-control" type="search" placeholder="Filtre sua pesquisa" v-model="$store.state.controlAccessModule.filters.search" v-on:keyup.enter="loadEmployees()" />
But by Vuex standards, I shouldn’t change $state directly by the v-model, how should I do that? Using a $state in the v-model is an "anti Pattern"?