// components/ComponentA.js
const ComponentA = {
template: `
Component A
Count: {{ count }}
Increment
Decrement
`,
computed: {
count() {
return this.$store.state.count;
}
},
methods: {
increment() {
this.$store.dispatch('increment');
},
decrement() {
this.$store.dispatch('decrement');
}
}
};