Home > Web Front-end > JS Tutorial > body text

Solution to the BUG that the page scrolling position does not change after vue2.0 routing switch

亚连
Release: 2018-05-30 13:56:48
Original
2108 people have browsed it

Below I will share with you a solution to the bug that the page scroll position does not change after the vue2.0 routing switch. It has a good reference value and I hope it will be helpful to everyone.

I encountered such a problem in a recent project. When Vue switches routing, the scrolling distance from the page to the top will remain unchanged.

<a href="javascript:;" rel="external nofollow" class="btn btn01" @click="useRightNow">立即试用</a>
<router-link class="db" to="/user">个人中心</router-link>
Copy after login

useRightNow(){
 if(判断用户存在){
  this.$router.push(&#39;/user&#39;)
 }else{
  this.$router.push("/login")
 }
}
Copy after login

The solution is very simple, as follows, directly monitor watch routing changes , and then assign the scroll distance scrollTop of the body to 0.

export default {
  watch:{
   &#39;$route&#39;:function(to,from){
           document.body.scrollTop = 0;
     document.documentElement.scrollTop = 0; 
   }
  }
 }
Copy after login

Supplement: The above problems will only occur in hash mode, history mode There is a better way to deal with it on the vue official website.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

Angular4 integrates the upload component of ng2-file-upload

Detailed explanation of user rights management of nodejs acl

Nodejs implements method example of parsing xml string into object

The above is the detailed content of Solution to the BUG that the page scrolling position does not change after vue2.0 routing switch. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!