了解です!
では続けて 第6章 6.1 よくあるエラーとその解決方法 に進みます。
Composition API + Vuex + コンポーザル関数への変換中や実装中に、
実際によく起きるエラーと、その原因・解決方法をまとめます。
store.getters['counter/doubleCount'] が undefined になるnamespaced: true) の設定ミスstore の登録時に counter モジュールが入っていないdoubleCount なのか DoubleCount なのか?namespaced: true があるか確認store/index.ts の modules: { counter } が正しいか確認// 正しい例
store.getters['counter/doubleCount']
Property 'count' does not exist on type 'RootState'