vue-router重定向

在访问空路由时,可以通过redirect 重定向到指定页面
{
    path:"*",
    redirect:"/"
}

在router index.js 中配置,*代表除了已经设置的所有路由,redirect代表重定向到“/”主页

猜你喜欢

转载自blog.csdn.net/qq_33350717/article/details/84579637