add admin

This commit is contained in:
xiaomlove
2021-03-31 19:39:59 +08:00
parent de95d1dc0a
commit fcce865a20
13 changed files with 12660 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { createApp } from 'vue'
import App from './App.vue'
import installElementPlus from './plugins/element'
const app = createApp(App)
installElementPlus(app)
app.mount('#app')