在vue中設置路由重定向的方法:1.新建項目,vue和vue-router;2.使用Vue.use注冊路由;3.定義和配置路由;4.在children屬性中使用redirect設置路由重定向;
具體步驟如下:
1.首先,在新建一個html項目,并在項目中引入vue和vue-router;
import Vue from 'vue'
import Router from 'vue-router'
2.vue和vue-router引入好后,在項目中使用Vue.use方法注冊路由;
Vue.use(Router)
3.路由注冊好后,在頁面中執行以下代碼定義和配置路由;
export default new Router({
routes: [
{
path : ‘/’,
name : ‘Home’,
component : HelloWorld,
},
]
})
4.最后,路由配置好后,在路由中添加一個children屬性,并使用redirect設置重定向地址即可;
export default new Router({
routes: [
{
path : ‘/’,
name : ‘Home’,
component : HelloWorld,
children:[
{path:"/",redirect:'/hone'},
]
},
]
})