vue路由跳转时 总是跳转到下一个页面的底部【bug修复】

今天爱分享给大家带来vue路由跳转时 总是跳转到下一个页面的底部【bug修复】,希望能够帮助到大家。

在路由的js中加入

  scrollBehavior (to, from, savedPosition) {
    if (savedPosition) {
      return savedPosition
    } else {
      return { x: 0, y: 0 }
    }
   },


列如:

export default new Router({
  // mode: 'history',
  mode: 'history',
  scrollBehavior (to, from, savedPosition) {
    if (savedPosition) {
      return savedPosition
    } else {
      return { x: 0, y: 0 }
    }
  },


人已赞赏
前端

Vue Failed to resolve loader: stylus-loader【解决办法】

2020-11-11 10:29:40

前端

Duplicate keys detected: ‘0‘. This may cause an update error.【解决办法】

2020-11-11 10:35:51

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
'); })();