Huang 76afc21f12 feat
1.新增缓存加密
2.新增pinia全局状态管理
2022-06-10 15:46:39 +08:00

11 lines
187 B
TypeScript

import type { App } from 'vue';
import { createPinia } from 'pinia';
const store = createPinia();
export function setupStore(app: App<Element>) {
app.use(store);
}
export { store };