mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
13 lines
298 B
TypeScript
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: '张三',
|
|
};
|
|
},
|
|
});
|