1. 程式人生 > >重定向和別名

重定向和別名

router pat new dex 組件 outer path out 定向

new router({

  routes:[

    {

      path: ‘/‘,

      conponent: home,

      name: ‘Home‘,

      alias: ‘/index‘

    },{

      path: ‘/about‘,

      conponent: about,

      name: ‘About‘, 

    },{

      path: ‘/document‘,

      conponent: document,

      name: ‘Document‘, 

    },{

      path: ‘*‘,

      // redirect: home 組件方式重定向

      // redirect: ‘Home‘ 別名方式重定向

      // redirect: ‘/‘

      //redirect (to) =>{
        if(to.path===‘/123‘){

          to.path=‘/‘

         }else{

          to.path=‘/about‘

          }
      }  

    },

  ]

})

重定向和別名