当前位置: 首页 > 工具软件 > nav-nuderline > 使用案例 >

bv中b-nav-item设置了to属性不能正常切换active

郗俊能
2023-12-01

bootstrap-vue的navbar 导航栏中的b-nav-item设置了to属性别不能正常切换active状态

解决:加上exact

<b-nav-item :to="{name: 'home'}" @click="clickHome" exact>Home</b-nav-item>
<b-nav-item :to="{name: 'about'}" @click="clickAbout" exact>About</b-nav-item>

参考:
https://github.com/bootstrap-vue/bootstrap-vue/issues/1096

https://bootstrap-vue.js.org/docs/reference/router-links/#exact

 类似资料: