Answer the question
In order to leave comments, you need to log in
How to jump to a page to a specific tag?
I am using nuxt-link. When I go to the next router - domen/post/ychim-yroki#comments, I want to get to the page with the post Learning lessons, but get to the block with comments. When I navigate, I land on this post, but stay at the top of the page. Is there such a possibility at all?
Answer the question
In order to leave comments, you need to log in
<a name="comments"></a> <!-- Вот к этому тегу страница прокрутится, если в хэше урла будет такое же имя -->
<div>
Блок с комментариями
</div>
scrollBehavior (to, from, savedPosition) {
if (to.hash) {
return {
selector: to.hash
// , offset: { x: 0, y: 10 }
}
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question