Closed
Description
I have a nested routes with a default component:
routes: [
{
path: '/home',
name: 'home',
component: Home,
children: [
{
path: '',
name: 'home.index',
component: HomeIndex
}
]
}
]
I'd expect for HomeIndex
to be rendered into Home
's <router-view>
when i enter Home
, but when i navigate to it using :to="{ name: 'home' }"
, only Home
is rendered.
Using to="/home"
directly works as expected.
Vue.js & vue-router.js version
2.0.0-rc.4, 2.0.0-rc.4