This commit is contained in:
chenxiaoxi
2021-04-20 15:25:46 +08:00
parent b2620a08a1
commit 2eb52eec59
161 changed files with 141 additions and 11301 deletions
+4 -12
View File
@@ -1,20 +1,12 @@
import Vue from 'vue'
import App from './App'
import store from './store'
import App from './App.vue'
import router from './router'
import './plugins'
import '@/layouts/export'
if (process.env.NODE_ENV === 'production') {
const { mockXHR } = require('@/utils/static')
mockXHR()
}
import store from './store'
Vue.config.productionTip = false
new Vue({
el: '#vue-admin-beautiful',
router,
store,
render: (h) => h(App),
})
render: h => h(App)
}).$mount('#foton')