Store
const store = new Vuex.Store({
state: {
count: 0,
},
mutations: {
increment (state) {
state.count++;
},
},
});
const app = new Vue({
el: '#vuex-wrapper',
store,
template: '<div><button v-on:click="$store.commit(\'increment\')">Increment</button></div>',
});
кто может подсказать что ле так?
this.$store
ну почему vuex... почему vue 2... почему....
знаешь, vue 3 не всем нравится
ок, давайте все юзать jquery и windows 95
Обсуждают сегодня