.router-link-active { color: #f40; } .router-link-exact-active { border-bottom: 1px solid #f40; }
<router-link activeClass="btm" exactActiveClass="color" to="/home">home</router-link> <router-link active-class="btm" exact-active-class="color" to="/mine">mine</router-link>
const router = createRouter({ // ... linkActiveClass : "nav-color"; linkExactActiveClass : "exact-nav-color"; })
router.options = { linkActiveClass: "nav-color", linkExactActiveClass: "exact-nav-color", };
router.options.linkActiveClass = "nav-color"
router.options.linkExactActiveClass = "exact-nav-color"
<div :class = "{'active':route.path.includes('/home')}">Home</div>
. 指定样式 - .router-link-active .router-link-exact-active
. 指定类 - activeClass、exactActiveClass
. 配置路由样式类 - linkActiveClass、linkExactActiveClass
{ path: "/menu", name: "menu", component: () => import("@/views/MenuView.vue"), meta: { showNav: true, title: "菜单" }, children: [ { path: "", name: "goods", component: () => import("@/components/Goods.vue"), meta: { showNav: true, title: "菜单-商品列表" }, }, { path: "vip", name: "vip", component: () => import("@/components/Vip.vue"), meta: { showNav: true, title: "菜单-商品列表" }, }, { path: "rank", name: "rank", component: () => import("@/components/Rank.vue"), meta: { showNav: true, title: "菜单-年度封神榜" }, }, { path: "favorite", name: "favorite", component: () => import("@/components/Favorite.vue"), meta: { showNav: true, title: "菜单-我的常点" }, }, ], }
const tabs = [ { ind: 0, title: '经典菜单', path: '/menu', keyword: 'classic' }, { ind: 1, title: '会员卡', path: '/menu/vip', keyword: 'member' }, { ind: 2, title: '年度封神榜', path: '/menu/rank', keyword: 'rank' }, { ind: 3, title: '我的常点', path: '/menu/favorite', keyword: 'favor' }, ]
<button v-for="(item, ind) in tabs" :key="ind" class="tab-item" @click.stop="navToItem(item)" :class="{ active: currentInd === ind }"> <h3>{{ item.title }}</h3> </button>
.tab-item { position: relative; } .tab-item.active::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 60%; height: 4px; background-color: var(--main-color); }