Uncaught (in promise) Error: ERR_STORE_NOT_PROVIDED: To use getModule(), either the moduleさっぱり原因がわからなかったのですがようやく解決できたのでそのメモ。
should be decorated with store in decorator, i.e. @Module({store: store}) or
store should be passed when calling getModule(), i.e. getModule(MyModule, this.$store)
vuex: false
というオプションがあることを発見したので、いれてみたら見事解決しました! i18n: {
locales: [
{
code: 'ja',
iso: 'ja-JP',
name: '日本語',
file: 'ja.json'
}
],
defaultLocale: 'ja',
strategy: 'no_prefix',
lazy: true,
langDir: 'locales/lang/',
vueI18n: {
fallbackLocale: 'ja'
},
vueI18nLoader: true,
vuex: false // ←これいれた
},
こんにちは。virapture…
View Comments
Your article helped me a lot, is there any more related content? Thanks!