mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
13 lines
219 B
TypeScript
13 lines
219 B
TypeScript
import { defineStore } from 'pinia';
|
|
|
|
interface UserState {
|
|
id?: string | number;
|
|
}
|
|
|
|
export const useUserStore = defineStore({
|
|
id: 'user',
|
|
state: (): UserState => ({}),
|
|
getters: {},
|
|
actions: {},
|
|
});
|