文档:https://pinia.vuejs.org/zh/introduction.html
1.引入pinna
npm install pinia -S
2.在src文件里面创建store文件article.js 在main.js中引用pinna
import { defineStore } from 'pinia'
// 你可以对 `defineStore()` 的返回值进行任意命名,但最好使用 store 的名字,同时以 `use` 开头且以 `Store` 结尾。(比如 `useUserStore`,`useCartStore`,`useProductStore`)
// 第一个参数是你的应用中 Store 的唯一 ID。
export const useAlertsStore = defineStore('alerts', {
// 其他配置...
})
获取多个接口
使用pinia
import { useArticleStore } from "@/stores/article"; const articleOther = useArticleStore();标签:const,defineStore,useArticleStore,pinia,VUE3,引入,Store From: https://www.cnblogs.com/junwuxiao/p/17876915.html