feat: 提供多页面构建示例,优化了打包分包,取消CDN加载依赖但保留了设置入口

This commit is contained in:
FairyEver
2020-12-03 22:03:58 +08:00
parent a947e40e14
commit 41a7e02eb5
15 changed files with 411 additions and 98 deletions

15
src.mobile/main.js Normal file
View File

@@ -0,0 +1,15 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import 'flex.css'
import './vant'
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')