이번 포스트에서는 작지만 유용한 라우팅 기법들에 대해 살펴보자. reidrect와 alias redirectredirect는 어떤 경로로 요청이 들어왔을 때 다른 경로로 연결하는 기법을 의미한다. 예를 들어 링크 설계는 이미 되었지만 아직 컴포넌트 구현은 되지 않은 경우 404로 처리하는 대신 EmptyComponent로 redirect를 요청할 수 있다.{ path:"/etc/nextstep1", redirect: "/under"},{ path:"/etc/nextstep2", redirect: {name:'underconstruction'}}redirect 할 때에는 일반적으로 redirect 된 route의 component를 사용하면 되기 때문에 component 속성이 불..
[vue3-router] 04. 기타 라우팅 기법
이번 포스트에서는 작지만 유용한 라우팅 기법들에 대해 살펴보자. reidrect와 alias redirectredirect는 어떤 경로로 요청이 들어왔을 때 다른 경로로 연결하는 기법을 의미한다. 예를 들어 링크 설계는 이미 되었지만 아직 컴포넌트 구현은 되지 않은 경우 404로 처리하는 대신 EmptyComponent로 redirect를 요청할 수 있다.{ path:"/etc/nextstep1", redirect: "/under"},{ path:"/etc/nextstep2", redirect: {name:'underconstruction'}}redirect 할 때에는 일반적으로 redirect 된 route의 component를 사용하면 되기 때문에 component 속성이 불..
2023.11.02