@pinia/nuxt
Nuxt 2 & 3 模块
安装
npm i pinia @pinia/nuxt
使用
添加到 nuxt.config.js
中的 modules
(Nuxt 3)或 buildModules
(Nuxt 2)
// Nuxt 2
export default {
buildModules: [['@pinia/nuxt', { disableVuex: true }]],
}
// Nuxt 3
export default defineNuxtConfig({
modules: ['@pinia/nuxt'],
})
请注意,如果您在使用 Nuxt 2 而没有 Bridge,还需要 @nuxtjs/composition-api
。请参阅文档了解更多。