Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Commit

Permalink
fix: wrong payloads in event closed and closing emitted by snackb…
Browse files Browse the repository at this point in the history
…ar (#208)
  • Loading branch information
tychenjiajun authored and matsp committed Apr 1, 2019
1 parent d46290c commit 491f361
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/snackbar/Snackbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ export default {
},
methods: {
onClosing (e) {
this.$emit('closing', e)
this.$emit('closing', e.detail)
},
onClosed (e) {
this.$emit('closed', e)
this.$emit('closed', e.detail)
},
onOpening () {
this.$emit('opening')
Expand Down

0 comments on commit 491f361

Please sign in to comment.