Vue Router
기초 라우팅
...
const router = new VueRouter({
mode: 'history',
routes: [
{
path: '/',
name: 'main',
component: Main,
meta: { title: 'DIMIGOIN' }
},
...
...routers.auth,
...routers.request,
...routers.management,
...routers.teacher,
...routers.assignment,
{
path: '*',
component: NotFound
}
],
scrollBehavior (to, from, savedPosition) {
if (savedPosition) {
return savedPosition
} else {
return { x: 0, y: 0 }
}
}
})
...지연된 로딩
Last updated
Was this helpful?