You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
314 B
16 lines
314 B
|
6 days ago
|
import { createPinia } from "pinia";
|
||
|
|
import { createEps } from "./eps";
|
||
|
|
import { createModules } from "./modules";
|
||
|
|
import { type App } from "vue";
|
||
|
|
|
||
|
|
export async function bootstrap(app: App) {
|
||
|
|
// 状态共享存储
|
||
|
|
app.use(createPinia());
|
||
|
|
|
||
|
|
// 创建 EPS
|
||
|
|
createEps();
|
||
|
|
|
||
|
|
// 创建 uni_modules
|
||
|
|
createModules();
|
||
|
|
}
|