LoginSignup
0
0

More than 3 years have passed since last update.

vue.js 何かの処理の後にページTOPへスクロールする

Posted at
some_component.vue
// 関数を作る
methods: {
  scrollToTop: function() {
    scrollTo(0, 0)
  }
}

// 実行
this.scrollToTop()

参考にしました。
https://www.sejuku.net/blog/62930#TOP

scrollTo(x軸左右, y軸上下)

// 右へ20px, 下へ100px移動する
scrollTo(20, 100)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0