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

Co-authored-by: Mark <mark@mhack.io>
This commit is contained in:
bavis-m
2021-09-11 17:05:14 -04:00
committed by GitHub
co-authored by Mark
parent 9f19543488
commit b3d9a183ea
+1 -1
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)
}
})
})