完善登录注册

This commit is contained in:
jiayuqi7813
2022-06-01 20:12:03 +08:00
parent 601d9c2831
commit 3b6e304977
6 changed files with 257 additions and 9 deletions

View File

@@ -3,9 +3,13 @@ import router from './router'
import App from './App.vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import * as Elicons from '@element-plus/icons-vue';
const app = createApp(App)
Object.keys(Elicons).forEach((key) => {
app.component(key, Elicons[key]);
});
app.use(ElementPlus)
app.use(router)
app.mount('#app')