mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
13 lines
211 B
TypeScript
13 lines
211 B
TypeScript
import { defineStore } from 'pinia';
|
|
|
|
interface AppState {
|
|
sys?: string | number
|
|
}
|
|
|
|
export const useAppStore = defineStore({
|
|
id: 'app-store',
|
|
state: (): AppState => ({}),
|
|
getters: {},
|
|
actions: {},
|
|
});
|