vue基础 重定向redirect

  //第一种写法
   {
        path:'/',
        redirect:{        //指定name
            name:'news'
        }
    },

//第二种写法
   {
        path:'/',
        redirect:'news'        //指定目标路径
        
    },


//第二种写法
   {
        path:'/',
        redirect:to=>{   //指定一个方法,动态返回重定向目标
             //return 重定向的字符串路径或者路径对象
         } 
    },

 

posted @ 2022-04-26 19:40  虚无——缥缈  阅读(837)  评论(0编辑  收藏  举报