2

在带有路由器 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

谢谢,对于任何想法或建议

4

1 回答 1

7

我错过了https://github.com/vuejs/rfcs/blob/master/active-rfcs/0028-router-active-link.md#unrelated-but-similiar-routes,它有点隐藏。显示的 RouterView 解决方法工作正常。这是我的例子:

import { h } from 'vue'
import { RouterView } from 'vue-router'

const routes = [
  {
    path: '/test',
    component: { render: () => h(RouterView) },
    children: [
      { 
        path: '',
        name: 'test',
        component: Test
      },
      { 
        path: '2',
        name: 'test-2',
        component: Test2
      }
    ]
  }
]
于 2021-05-04T15:53:21.483 回答