如何处理Nuxt.js中的锚点(在同一页面中)?
问题是URL始终停留在基础Form::select
上
我也想在网址上显示锚点:localhost:3000/
,localhost:3000/#anchor1
,localhost:3000/#anchor2
…等等。
似乎localhost:3000/#anchor3
不能完成工作。
如何实现此功能?
答案 0 :(得分:0)
如果使用locales
<nuxt-link
:to="localePath({ name: 'index', hash: '#anchor1'})"
v-text="Anchor 1"
alt="Anchor 1">
</nuxt-link>
其他
<nuxt-link to="/anchor1" v-text="Anchor 1" />