이 글은 vue.js 라우팅 표시 설정 방법을 소개합니다. 참고가 필요한 친구들이 참고할 수 있기를 바랍니다.
const router= new VueRouter({ routes:[ {path:'/',name:'home',component:Home}, //页面第一显示的组件 {path:'/menu',name:'menu',component:Menu}, {path:'*',redirect:'/'} ], mode:"history" });
②리디렉션 값 설정(보조 라우팅에 적용 가능)
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 경로 표시 설정 방법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!