>  기사  >  웹 프론트엔드  >  vue.js 경로 표시 설정 방법 소개

vue.js 경로 표시 설정 방법 소개

不言
不言원래의
2018-08-23 16:30:261455검색

이 글은 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의 보조 라우팅 및 3차 라우팅 코드 분석

요약 Vue.js 라우터 사용 방법(코드 포함)

위 내용은 vue.js 경로 표시 설정 방법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

관련 기사

더보기