点击时抛出event对象

This commit is contained in:
niunai 2017-03-14 15:58:10 +08:00
parent fcec8efae6
commit 6f30cd1404

View File

@ -43,8 +43,8 @@ export default {
},
methods: {
handleClick() {
this.$emit('click');
handleClick(e) {
this.$emit('click', e);
}
},