做法
安裝依賴套件。
1 | npm install pinia @pinia/nuxt |
修改 nuxt.config.js
檔。
1 | export default defineNuxtConfig({ |
新增 stores/authStore.js
檔。
1 | import { defineStore } from 'pinia'; |
引入並使用。
1 | import useAuthStore from '~/stores/authStore'; |
安裝依賴套件。
1 | npm install pinia @pinia/nuxt |
修改 nuxt.config.js
檔。
1 | export default defineNuxtConfig({ |
新增 stores/authStore.js
檔。
1 | import { defineStore } from 'pinia'; |
引入並使用。
1 | import useAuthStore from '~/stores/authStore'; |