首页基本框架

This commit is contained in:
2023-06-28 01:52:09 +08:00
parent 63351476b7
commit 0510b157f9
12 changed files with 3627 additions and 36 deletions

View File

@@ -1,8 +1,14 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import Element from 'element-ui'
import './assets/styles/element-variables.scss'
Vue.config.productionTip = false
Vue.use(Element);
new Vue({
render: h => h(App),
router,
render: h => h(App)
}).$mount('#app')