const router= new VueRouter({
routes:[
{path:'/',name:'home',component:Home}, //页面第一显示的组件
{path:'/menu',name:'menu',component:Menu},
{path:'*',redirect:'/'}
],
mode:"history"
});②设置 redirect 的值(适用于 二级路由)
const router= new VueRouter({
routes:[
{path:'/',name:'home',component:Home},
{path:'/about',name:'about',component:About,redirect:{name:'contactLink'},children:[ //二级路由
{path:'/about/contact',name:'contactLink',component:Contact},
{path:'/history',name:'historyLink',component:History},
]},
{path:'*',redirect:'/'}
],
mode:"history"
});相关推荐:
vue.js中二级路由和三级路由的代码解析
Vue.js路由器的使用方法总结(附代码)
Copyright © 2019- huatuoask.net 版权所有
违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com
本站由北京市万商天勤律师事务所王兴未律师提供法律服务