初始化

This commit is contained in:
clay
2021-12-27 22:41:01 +08:00
commit 6d8154dc9e
18 changed files with 12514 additions and 0 deletions

16
src/main.js Normal file
View File

@@ -0,0 +1,16 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import i18n from './i18n/i18n'
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.config.productionTip = false
Vue.use(ElementUI)
new Vue({
i18n,
router,
render: h => h(App)
}).$mount('#app')