fix: anchor links - use MouseEvent.currentTarget (#4236)

Co-authored-by: Mark <mark@mhack.io>
This commit is contained in:
bavis-m
2021-09-11 14:05:14 -07:00
committed by GitHub
parent 9f19543488
commit b3d9a183ea

View File

@@ -579,7 +579,7 @@ export default {
el.onclick = ev => {
ev.preventDefault()
ev.stopPropagation()
this.$vuetify.goTo(decodeURIComponent(ev.target.hash), this.scrollOpts)
this.$vuetify.goTo(decodeURIComponent(ev.currentTarget.hash), this.scrollOpts)
}
})
})