1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vuejsでイベントリスナーが削除できなかったのはこういう理由か

Posted at

できなかったこと

  • 登録したイベントリスナーが削除できていなかった

原因

  • 登録したイベントリスナーと別のイベントリスナーを削除していたから

詳細

  • イベントを以下のように登録した
mounted: {
  document.addEventListener('scroll', this.scroll, {
    capture: true
  })
}
  • イベントを以下のように削除していた
destroyed: {
  document.removeEventListener('scroll', this.scroll)
}

こうすべき

  • イベントを以下のように登録したら
mounted: {
  document.addEventListener('scroll', this.scroll, {
    capture: true
  })
}
  • イベントを以下のように削除すべき
destroyed: {
  document.removeEventListener('scroll', this.scroll, {
    capture: true
  })
}

補足

  • イベントを削除せずに、同じ名前で登録したら処理は上書きされない
    • つまり、同じイベントで複数の処理が追加で実行されるようになる
1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?