我正在使用Bootstrap-vue 选项卡。这是标签的 HTML:
<b-tabs>
<b-tab title="Exotic Dogs" href="#dogs">
<br>Dogs here
</b-tab>
<b-tab title="Exotic Cats" href="#cats">
<br>Cats here
</b-tab>
</b-tabs>
这是猫的路线:
{
path: '/animals/:id#cats',
name: 'getCats',
component: Animals // removed from HTML to simplify
},
在组件代码中:
this.$router.replace({ name: 'getCats', params: { id: this.$route.params.id }})
这将需要:
本地主机:3000/animals/234909888#cats
但是狗选项卡是打开的(第一个选项卡)而不是猫选项卡。刷新浏览器也会显示空白页。
如何解决这个问题?