mirror of
https://github.com/rubickCenter/rubick
synced 2025-12-25 20:09:27 +08:00
⚡ 增加首屏打开速度
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
import { createApp } from "vue";
|
||||
import Antd from "ant-design-vue";
|
||||
import { Button, List, Spin, Input, Avatar } from "ant-design-vue";
|
||||
import App from "./App.vue";
|
||||
import "ant-design-vue/dist/antd.css";
|
||||
|
||||
createApp(App).use(Antd).mount("#app");
|
||||
createApp(App)
|
||||
.use(Button)
|
||||
.use(List)
|
||||
.use(Spin)
|
||||
.use(Input)
|
||||
.use(Avatar)
|
||||
.mount("#app");
|
||||
|
||||
Reference in New Issue
Block a user