在带有路由器 4 的 vue 3 中,该类router-link-active
不再为我工作。如果您与 一起在同一页面上,则该类出现router-link-exact-active
,但不在任何子页面上。
例如链接<router-link :to="{ name: 'test'}">test</router-link>
获取的类router-link-active
和/test但它们都没有在router-link-exact-active
/ test/2
{
path: '/test',
name: 'test',
component: Test
},
{
path: '/test/2',
name: 'test-2',
component: Test2
},
真实示例: https ://codesandbox.io/s/vue-router-4-reproduction-forked-zcb7y
谢谢,对于任何想法或建议