<router-view class="view one"></router-view>
<router-view class="view two" name="a"></router-view>
<router-view class="view three" name="b"></router-view>
JS:
routes: [ { path: ‘/‘,redirect: ‘/b‘ ,components: { default: Foo, a: Bar, b: Baz } } ]
重定向:跳转到redirect的地址。
别名:url匹配为/b,但路由仍然匹配到视图/a
routes: [ { path: ‘/a‘, component: A, alias: ‘/b‘ } ]
在routes配置。
时间: 2024-09-28 13:22:45