vue中路由重定向redirect
1.重定向的地址不需要接收参数const routes = [ { path: '/', redirect: '/index'}, { path: '/index', component: index }]把"/"重定向到"/index"2.重定向的地址需要接收参数然而没有传参不会改变地址,页面不会报错但是也不会显示内容3.重定向的地址需要接收参数并且传参{ path:'/goParams/:newsId(\\d+)/:newsTitle',