mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-05 05:54:43 +00:00
pass $event to on click inside md-list-item (#180)
This commit is contained in:
parent
ed7091afe0
commit
1f18f96ce4
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