0👍
try this
export default createStore({
state() {
return : {
counter: 8,
}
},
mutations: {},
actions: {},
modules: {},
});
counter: function () {
return this.$store.state.counter;
},
working code: https://codesandbox.io/s/vue-3-ionic-vuex-forked-w571p?file=/src/App.vue
- [Vuejs]-How to open a rails href link from a Vue JS Method?
- [Vuejs]-Why does every component in my page appears twice?
Source:stackexchange.com