mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-05 14:04:44 +00:00
pass $event to on click inside md-list-item (#180)
This commit is contained in:
parent
ae06e82bc9
commit
88660316cb
1 changed files with 2 additions and 2 deletions
|
|
@ -16,8 +16,8 @@
|
|||
let listItemSpec = {
|
||||
staticClass: 'md-list-item',
|
||||
on: {
|
||||
click: () => {
|
||||
this.$emit('click');
|
||||
click: ($event) => {
|
||||
this.$emit('click', $event);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue