29.Vue.js :路由重定向

路由重定向

//第一种
{
   name: 'default',
   path: '*',
   redirect: '/index'
 }

//第二种
{
   name: 'default',
   path: '*',
   redirect: {
   name: 'index'
   }




    路由router
    
    
    
    
    



    
  • 首页
  • 水果
  • 蔬菜
  • 肉类

 

你可能感兴趣的:(Vue.js)