Skip to content

Commit

Permalink
fix(VMenu): remove unnecessary event.stopPropagation
Browse files Browse the repository at this point in the history
was added early on in the framework to solve an issue that no longer exists

fixes #6654
  • Loading branch information
johnleider committed Jan 19, 2020
1 parent be58395 commit 5af2cd1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/vuetify/src/components/VMenu/VMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,6 @@ export default baseMixins.extend({
ref: 'content',
on: {
click: (e: Event) => {
e.stopPropagation()

const target = e.target as HTMLElement

if (target.getAttribute('disabled')) return
Expand Down

0 comments on commit 5af2cd1

Please sign in to comment.