2022-08-08 01:12:01 +08:00

13 lines
298 B
TypeScript

import { defineStore } from 'pinia';
// useStore 可以是 useUser、useCart 之类的任何东西
// 第一个参数是应用程序中 store 的唯一 id
export const useStore = defineStore('user-store', {
// other options...
state: () => {
return {
name: '张三',
};
},
});