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