mirror of
https://github.com/rubickCenter/rubick
synced 2025-07-21 07:29:33 +08:00
7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
import store from "./store";
|
|
|
|
createApp(App).use(store).use(router).mount("#app");
|