vue 中路由重定向
2019-02-17 本文已影响0人
轩轩小王子
router---> index.js
{
path: '/views',
beforeEnter(to, from, next) {
if (config.isDev) {
window.location = '/view.html'
} else {
window.location = '/h5/saas/index.html'
}
}
}