goview_vue/src/store/index.ts

11 lines
187 B
TypeScript
Raw Normal View History

2021-12-10 14:11:49 +08:00
import type { App } from 'vue';
import { createPinia } from 'pinia';
const pinia = createPinia();
2021-12-10 14:11:49 +08:00
export function setupStore(app: App<Element>) {
app.use(pinia);
2021-12-10 14:11:49 +08:00
}
export { pinia };