重新架构

This commit is contained in:
2023-02-28 01:16:49 +08:00
parent 79db808657
commit ef1b43436b
6 changed files with 98 additions and 21 deletions

View File

@@ -9,9 +9,12 @@
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
import { createApp } from 'vue';
import './style.css';
import { router } from "./router/index.js";
import App from './App.vue';
import './style.css';
//css
import("element-plus/dist/index.css");
@@ -28,4 +31,5 @@ for (const [key, component,] of Object.entries(ElementPlusIconsVue))
}
app.use(ElementPlus);
app.use(router);
app.mount('#app');