我用vuejs制作了一个仪表板。 我的问题是我想直接转到路线“仪表板/我的配置文件”。 这条路线是另一个的孩子:
{
path: '/dashboard',
name: 'dashboard',
components: { default:Dashboard },
children: [
{
path: 'my-profile',
name: 'show_profile',
components: {
subview: Profile
}
}
]
}
当我尝试直接转到“仪表板/我的配置文件”时,它加载良好,但立即重定向到他的父母的“仪表板” 你知道我该怎么做吗?
答案 0 :(得分:0)
似乎您尚未为Profile
定义路由器视图:
<router-view></router-view><!-- Default: Dashboard -->
<router-view name="subview"></router-view><!-- Profile -->