feat:UI及部分后端
This commit is contained in:
@@ -1,4 +1,14 @@
|
||||
import { createApp } from "vue";
|
||||
import App from "./App.vue";
|
||||
import "./tailwind.css"
|
||||
import Antd from 'ant-design-vue';
|
||||
import 'ant-design-vue/dist/reset.css';
|
||||
import router from "./router";
|
||||
|
||||
createApp(App).mount("#app");
|
||||
|
||||
|
||||
const app = createApp(App);
|
||||
|
||||
app.use(router)
|
||||
app.use(Antd)
|
||||
app.mount("#app");
|
||||
|
||||
Reference in New Issue
Block a user