开放平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415
  1. export default ({
  2. app
  3. }) => {
  4. app.router.beforeEach((to, from, next) => {
  5. console.log(to.path)
  6. if (to.path === '/domain' || to.path === '/domain/control' || to.path === '/domain/' || to.path === '/domain/control/') {
  7. next('/domain/control/myApp')
  8. return
  9. }
  10. next()
  11. })
  12. }