mirror of
https://github.com/rubickCenter/rubick
synced 2025-12-27 13:09:42 +08:00
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
import { createApp } from "vue";
|
|
import Antd from "ant-design-vue";
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
import store from "./store";
|
|
import "./assets/ant-reset.less";
|
|
|
|
createApp(App).use(store).use(Antd).use(router).mount("#app");
|