This commit is contained in:
chenxiaoxi
2021-04-21 14:46:48 +08:00
parent 2eb52eec59
commit 312057f04d
197 changed files with 18308 additions and 123 deletions
+7 -5
View File
@@ -1,12 +1,14 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import App from './App'
import store from './store'
import router from './router'
import './plugins'
import '@/layouts/export'
Vue.config.productionTip = false
new Vue({
el: '#vue-admin-beautiful',
router,
store,
render: h => h(App)
}).$mount('#foton')
render: (h) => h(App),
})