Reactive Vuex store getter in plugin provide
Migrating a Nuxt 2 project so excuse the strange behaviour.
Is there a way to make $app reactive here?
inside a component script setup:
$app is correctly showing the store response, but it's not up to date.
I've tried wrapping it in a ref() but that didn't help:
2 Replies
Hi @Titan. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
The issue you're experiencing is related to reactivity loss when providing values from your Vuex store in a Nuxt plugin. This is a common challenge when migrating from Nuxt 2 to Nuxt 3, especially with Vuex integration.
The problem is that you're providing a static value from your store getter, not a reactive reference to it. When the store updates, your provided value doesn't update because it's not maintaining the reactivity chain.
Here's how you can fix it:
By providing a function instead of a direct value, you're ensuring that each time
$app
is accessed, it will fetch the current value from the store. Then in your component:
Alternatively, you could use computed
to maintain reactivity:
Then in your component:
It's worth noting that Nuxt 3 officially recommends using Pinia instead of Vuex. If you're in the process of migrating, you might want to consider transitioning to Pinia as well, which has better TypeScript support and integration with the Composition API.
Nuxt Migration Guide: Vuex provides more information about migrating from Vuex to Pinia.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@109997634327986176> Kapa.ai is still learning and improving, please let me know how I did by reacting below.