page.vue - допустим это дочерний
<
template>
<div>
{{ test
}} <div>
</
template>
<
script lang
="ts">
import {Component, Vue} from "nuxt-property-decorator"
@Component({
name: 'page',
async fetch({ store }) {
store.commit('SET_TEST', 'Hello world');
}
})
export default class Page extends Vue {
created() {
this.$store.commit('SET_TEST', 'Hello world');
}
}
</
script>