-
I'm getting the error:
*Uncaught Error: [vuex] must call Vue.use(Vuex) before creating a store instance.*
Here's my thoughts:
Perhaps direct-vuex has its own VueX installation?
Here's what …
-
I imported the module like this
`import { createPersistedState, createSharedMutations } from "vuex-electron"`
and got the error:
```
5:61 Could not find a declaration file for module 'vuex-ele…
-
#### Describe the bug
Using typescript 4.3.x results in undefined field values after creating, inserting or dispatching data to a model
#### Steps to reproduce the bug
1. Checkout the TS exam…
-
报错信息
`
./node_modules/vuex/dist/vuex.esm-browser.js 132:14-25
"export 'effectScope' was not found in 'vue'
`
版本
`
node -v v15.9.0
npm -v 7.5.3
`
启动命令(windows环境)
`
yarn.cmd start
…
-
Dynamic module doesn't work for me this is my configurations
**store/index.ts**
```
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({})
```
**s…
-
### Note
All possible trials to use vuex decorators will be recorded on here.
### Approach 1 (crashes with nuxt [ Reference Error: Cannot access 'store' before initialization ])
`@/store/index.ts…
-
I used the Setup instructions to try to make Vuex-Orm GraphQL Plugin work in my app, but immmediately got several errors. Vuex-ORM works already in my app, but the GraphQL plugin doesn't. Is there som…
-
```
Uncaught (in promise) Error: ERR_ACTION_ACCESS_UNDEFINED: Are you trying to access this.someMutation() or this.someGetter inside an @Action?
That works only in dynamic modules.
If not dynami…
-
I'm trying to use this package with my vue-3 app and the composition api, but I'm running into this error. Any ideas?
Version: `"vuex-composition-helpers": "^2.0.0",`
```
import { createNamespa…
-
Using this approach with Nuxt: https://github.com/championswimmer/vuex-module-decorators#accessing-modules-with-nuxtjs
store/index.ts:
```
import { Store } from 'vuex'
import { initialiseStore…