vue 경로 구 조 는 동적 으로 경로 조작 을 편리 하 게 추가 할 수 있 습 니 다.
let routes=[{ path: '/login', name: 'login', component: () => import('../components/Login.vue') }]
this.$router.addRoutes(routes)
다 중 경로 포함 그림
단순 사용 addRoutes 계층 구조 가 다 릅 니 다.
경로 구조 수정
예:
{
name:'account',
path: '/account/account',
meta: {
title: ' ',
requireAuth: true
},
component: account,
children:[
{
name: 'account',
path: '/account/account',
meta: {
title: ' ',
requireAuth: true
},
component: setAccount,
},
{
name: 'childMgt',
path: '/account/childMgt',
meta: {
title: ' ',
requireAuth: true
},
component: childMgt,
},
]
},
단일 구조 수정
{
name:'account',
path: '/account/account',
meta: {
title: ' ',
requireAuth: true
},
component: account,
children:[
{
name: 'account',
path: '/account/account',
meta: {
title: ' ',
requireAuth: true
},
component: setAccount,
},
]
},
{
name:'account',
path: '/account/childMgt',
meta: {
title: ' ',
requireAuth: true
},
component: account,
children:[
{
name: 'userMgt',
path: '/account/childMgt',
meta: {
title: ' ',
requireAuth: true
},
component: childMgt,
},
]
},
각 층 마다 하위 집합 편리 권한 관리 동적 추가 가 따로 포함 되 어 있 습 니 다.main.js
router.beforeEach((to, from, next) => {
if (from.name == null) { //
let pathName = sessionStorage.getItem("pathName") //
if (pathName == to.path||pathName==to.redirectedFrom) {
} else {
sessionStorage.setItem("pathName", to.redirectedFrom)
}
} else {
sessionStorage.setItem("pathName", to.path)
}
next()
})
app.vue
let routes=[ ]
this.$router.addRoutes(routes)
this.$nextTick(i=>{
this.$router.replace(sessionStorage.getItem("pathName"))// 404
})
보충 지식:vue 경로 가 다음 층 에 들 어가 서 이전 층 으로 되 돌아 가 반복 적 으로 뛰 기 전에 페이지 에 들 어 갑 니 다.설명 하 다.
vue 경로 가 이전 층 으로 돌아 가 this.$router.back(-1)을 사용 합 니 다.
다른 페이지 로 들 어가 면 this.$outer.push('home')
이렇게 하면 내 가 페이지 에 들 어가 면 다음 과 같은 장면 이 발생 할 것 이다.
페이지 진입 시:A-B-C
페이지 복귀 시:C-B-A
총 경로 스케줄:A-B-C-B-A
전체적으로:페이지 가 돌아 올 때 이전 층 으로 되 돌아 갑 니 다.
해결 하 다.
공식 문서
this.$outer.push('home')/경로 정 보 를 반복 적 으로 추가 하여 경로 기록 에 들 어 갑 니 다.
this.$outer.replace('home')/이전 경로 기록 을 바 꿉 니 다.
this.$outer.replace('home')/페이지 이동 추천
이상 의 vue 경로 구 조 는 편리 하고 동태 적 으로 경로 조작 을 추가 할 수 있 습 니 다.바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.