I am working with vuex (2.1.1) and get things working within vue single file components. However to avoid too much cruft in my vue single file component I moved some functions to a utils.js
module which I import into the vue-file. In this utils.js
I would like to read the vuex state. How can I do that? As it seems approaching the state with getters etc is presuming you are working from within a vue component, or not?
I tried to import state from '../store/modules/myvuexmodule'
and then refer to state.mystateproperty
but it always gives 'undefined', whereas in the vue-devtools I can see the state property does have proper values.
My estimate at this point is that this is simply not 'the way to go' as the state.property value within the js file will not be reactive and thus will not update or something, but maybe someone can confirm/ prove me wrong.
It is possible to access the store as an object in an external js file, I have also added a test to demonstrate the changes in the state.
here is the external js file:
The state module:
The store:
So far all I have done is create a js file which exports a function returning the
AUTH_STATE
property ofauthorization
state variable.A component for testing:
On the button click default state is logged on to the console. The action in my case results in an api call, resulting a state change if the username - password combination had a record.
A success case results in showing the console in
authState
watch, the imported function can print the changes made to the state.Likewise, on a fail case, the watch on
authError
will show the changes made to the state