admin_add_router

This commit is contained in:
xiaomlove
2021-04-07 19:42:39 +08:00
parent e48461546f
commit be9b8634c4
7 changed files with 48 additions and 3 deletions
+3 -2
View File
@@ -1,7 +1,8 @@
import { createApp } from 'vue'
import App from './App.vue'
import installElementPlus from './plugins/element'
import router from './router'
const app = createApp(App)
const app = createApp(App).use(router)
installElementPlus(app)
app.mount('#app')
app.mount('#app')