#Nuxt
[[Nuxt Composition API]]を利用できない場合、[[Nuxt Composition APIでstoreを使用]]できないので`root.$store`を使う。
```ts
export default defineComponent({
setup(props, { root }) {
// Action
root.$store.dispatch('doAction', "");
// Mutation
root.$store.commit('doMutation', "");
}
})
```
> [!attention]
> この方法ではReactiveなStateを扱うことはできないかも..
> [!caution]
> [[Vue]] v2.7 ([[vue-demi]]) では利用できなそう