[vue-router] Redirect 와 Alias
1. Redirect 리다이렉션은 vue-router를 설정할 때 정의 할 수 있습니다. 예를 들어 /a라는 URL로 접속할 때, /b라는 URL로 리다이렉션을 시켜주고 싶다면, const router = new VueRouter({ routes: [ { path: '/a', redirect: '/b' } ] }) 위의 코드와 같이 vue-router를 설정 할 수 있습니다. const router = new VueRouter({ routes: [ { path: '/a', redirect: { name: 'foo' }} ] }) 위의 코드와 같이 Named router를 사용할 수도 있습니다. const router = new VueRouter({ routes: [ { path: '/a', redirec..
Vue.JS
2019. 6. 12. 23:58
공지사항
최근에 올라온 글