2021-05-29 03:02:15 +08:00
|
|
|
|
import type { App } from 'vue';
|
2021-08-13 14:22:35 +08:00
|
|
|
|
import { createPinia } from 'pinia';
|
2021-05-29 03:02:15 +08:00
|
|
|
|
|
2022-04-13 23:45:15 +08:00
|
|
|
|
/** setup vue store plugin: pinia. - [安装vue状态管理插件:pinia] */
|
2021-08-13 14:22:35 +08:00
|
|
|
|
export function setupStore(app: App) {
|
2022-01-03 22:20:10 +08:00
|
|
|
|
const store = createPinia();
|
2021-08-13 14:22:35 +08:00
|
|
|
|
app.use(store);
|
2021-05-29 03:02:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-04 15:01:06 +08:00
|
|
|
|
export * from './modules';
|
2022-01-16 20:13:11 +08:00
|
|
|
|
export * from './subscribe';
|