vue路由Router设置父路由默认选中第一个子路由,切换子路由让父路由激活高亮效果不会消失
import Vue from 'vue';
import VueRouter from 'vue-router';
// 导入组件
import Home from '../views/Home.vue';
import Parent from '../views/Parent.vue';
import Child1 from '../views/Child1.vue';
import Child2 from '../views/Child2.vue';
Vue.use(VueRouter);
// 定义路由
const routes = [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/parent',
name: 'Parent',
component: Parent,
children: [
{
path: '',
name: 'Child1',
component: Child1,
},
{
path: 'child2',
name: 'Child2',
component: Child2,
},
],
},
];
// 创建路由实例
const router = new VueRouter({
mode: 'history',
routes,
});
// 添加全局的导航守卫
router.beforeEach((to, from, next) => {
if (to.matched.some(record => record.meta.keepAlive)) {
// 如果路由配置中设置了 `keepAlive` 为 `true`,则将该路由缓存
to.meta.isKeepAlive = true;
} else {
// 否则将该路由不缓存
to.meta.isKeepAlive = false;
}
next();
});
export default router;
定义了一个父级路由
/parent
,并在该路由的子路由中设置了默认选中的子路由。在Parent
组件中,你可以使用<router-view>
标签来渲染子路由。为了保持父路由高亮不消失,我们使用了全局的导航守卫。在导航守卫中,我们判断如果子路由设置了
keepAlive
为true
,则将该路由缓存。这样,在切换子路由时,父路由的高亮状态将保持不变。
可以使用<router-link>
标签中的exact-active-class
属性和父路由的redirect
属性来实现。
首先,在父路由的redirect
属性中设置默认重定向到第一个子路由:
{
path: '/parent',
redirect: '/parent/child1',
// 其他配置
}
然后,在父路由的<router-link>
标签中设置exact-active-class
属性为要使用的激活类名:
<router-link to="/parent/child1" exact-active-class="active">Child1</router-link>
<router-link to="/parent/child2" exact-active-class="active">Child2</router-link>
最后,使用以下CSS样式来保持父路由的激活状态:
.active {
/* 将子路由的激活类名设置为与父路由相同 */
/* 这样切换子路由时父路由的激活状态就会保持不变 */
color: red;
}
.active-link {
/* 将父路由的激活类名设置为与子路由相同 */
/* 这样父路由的激活状态就会与当前子路由的激活状态相同 */
color: red;
}
这样,当进入父路由时,默认会重定向到第一个子路由,并将其激活状态设置为父路由的激活状态。当切换子路由时,父路由的激活状态会保持不变,并继续使用子路由的激活类名来保持子路由的激活状态。
在Vue Router中可以通过配置<router-view>
组件的keep-alive
属性来保持组件状态,以达到在不同路由之间切换时保持组件状态的目的。同时,可以使用<router-link>
组件的exact
属性来指定是否精确匹配路由路径。
针对您的问题,可以通过以下步骤实现父路由默认选中第一个子路由,切换子路由时父路由仍然激活高亮效果:
在父路由的组件中使用<router-view>
组件,并设置keep-alive
属性,如下所示:
<router-view keep-alive></router-view>
在父路由的组件中通过$route
对象获取当前路由路径,然后使用<router-link>
组件的exact
属性指定是否精确匹配路由路径。同时,为了让子路由切换时父路由仍然激活高亮效果,需要在父路由的<router-link>
组件上添加exact-active-class
属性,如下所示:
<router-link to="/parent/child1" exact :class="{active: $route.path === '/parent/child1'}" exact-active-class="active">Child 1</router-link>
<router-link to="/parent/child2" exact :class="{active: $route.path === '/parent/child2'}" exact-active-class="active">Child 2</router-link>
在父路由的组件的mounted
生命周期钩子中,使用$router.push()
方法将路由重定向到第一个子路由的路径,即可实现父路由默认选中第一个子路由的效果,如下所示:
mounted() {
this.$router.push('/parent/child1');
}
在父路由的组件的样式中添加.active
类的样式,以实现激活高亮效果,如下所示:
.active {
color: red;
}