vue main.js按需引入不同页面 import ErrorApp from './Error.vue'
if(isAdminisAdminaule){
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')
} else {
new Vue({
render: h => h(ErrorApp)
}).$mount('#app')
}axios另一种写法
const isAdmin= axios({
url: '',
method: 'GET',
}).then(res=> }).catch(err=>{ })
版权声明:本文为weixin_43907110原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。