In Nuxt 2, store directories were supported and it was easy to use vuex.
The store directory is not supported in Nuxt 3.
This module allows the store directory to be used in Nuxt 3, reducing the difficulty of migration to Nuxt 3.
:warning: Since Nuxt 3 recommends the use of Pinia, it is preferable to avoid the use of Vuex.
You can install @wattanx/nuxt-vuex using nuxi:
npm install vuex
npx nuxi@latest module add @wattanx/nuxt-vuex
That’s it! You can now use @wattanx/nuxt-vuex in your Nuxt app ✨
See Nuxt 2 docs for basic usage.
https://v2.nuxt.com/docs/directory-structure/store/
@wattanx/nuxt-vuex does not support nuxtServerInit.
Instead, you can use the server side plugin or middleware with useNuxtApp().$store.
export default defineNuxtPlugin(() => {
const { $store } = useNuxtApp();
if (process.server) {
$store.dispatch('server/increment');
}
});
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release
We use cookies
We use cookies to analyze traffic and improve your experience. You can accept or reject analytics cookies.