mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-03-16 04:03:17 +08:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
// 路由
|
|
import router from "./router";
|
|
// Pinia
|
|
import { pinia } from "./store";
|
|
|
|
createApp(App).use(router).use(pinia).mount("#app");
|