We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to follow the example to use useStore within an Vue2 app with Vuex3. I wrote a simple component just to initialize the store:
import { defineComponent } from 'vue'; import { useStore } from '@vueblocks/vue-use-vuex'; export default defineComponent({ setup() { const store = useStore(); }, });
The compiler always throws the error and warning: You must use this function within the "setup()" method
You must use this function within the "setup()" method
Is there any limitation to use the vue-use-vuex with Vue2.7 and Vuex3.6?
The text was updated successfully, but these errors were encountered:
It seems to be something to do with imported Vue versions, I worked around it as follows:
const instance = getCurrentInstance(); const store = instance.proxy.$store;
Sorry, something went wrong.
No branches or pull requests
I'm trying to follow the example to use useStore within an Vue2 app with Vuex3.
I wrote a simple component just to initialize the store:
The compiler always throws the error and warning:
You must use this function within the "setup()" method
Is there any limitation to use the vue-use-vuex with Vue2.7 and Vuex3.6?
The text was updated successfully, but these errors were encountered: