在VueJS中,可以通过路由器链路来突出显示父菜单。具体实现方法如下:
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)
const routes = [
{
path: '/',
name: 'Home',
component: Home,
children: [
{
path: 'child',
name: 'Child',
component: Child
}
]
}
]
const router = new VueRouter({
mode: 'history',
base: process.env.BASE_URL,
routes
})
export default router
<router-link>
标签来生成菜单链接。可以通过to
属性指定路由路径。<template>
<div>
<router-link to="/">Home</router-link>
<router-link to="/child">Child</router-link>
</div>
</template>
<router-view>
标签来显示对应的组件。<template>
<div>
<router-view></router-view>
</div>
</template>
router-link-active
类名来设置样式。.router-link-active {
font-weight: bold;
}
通过以上步骤,就可以在VueJS中实现从路由器链路突出显示父菜单的效果。当访问子菜单时,父菜单会保持突出显示,以提醒用户当前所在的菜单位置。
推荐的腾讯云相关产品:腾讯云服务器(CVM)和腾讯云对象存储(COS)。
领取专属 10元无门槛券
手把手带您无忧上云