update:前段代码首次上传

This commit is contained in:
2021-09-09 09:35:27 +08:00
parent 97bffb4e48
commit ea7af395f3
38 changed files with 19957 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import '@/elementui'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import 'normalize.css/normalize.css'
import '@/assets/style/global.css'
import '@/assets/style/flex.css'
Vue.use(ElementUI)
Vue.config.productionTip = false
new Vue({
router,
store,
render: (h) => h(App),
}).$mount('#app')