码迷,mamicode.com
首页 > 其他好文 > 详细

重定向和别名

时间:2017-07-29 10:25:34      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:else   方式   routes   重定向   one   pat   route   red   组件   

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‘

          }
      }  

    },

  ]

})

重定向和别名

标签:else   方式   routes   重定向   one   pat   route   red   组件   

原文地址:http://www.cnblogs.com/jessicaWy/p/7253230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!