// components/ComponentB.js const ComponentB = { template: `

Component B

Data: {{ data }}

Fetch Data
`, computed: { data() { return this.$store.state.data; } }, methods: { async fetchData() { await this.$store.dispatch('fetchData'); } } };