This commit is contained in:
cookfront
2017-03-14 22:53:04 +08:00
parent 7674d8d562
commit bfa472e6e5
19 changed files with 701 additions and 3 deletions
+5
View File
@@ -1,5 +1,6 @@
<template>
<div
@click="handleRadioClick"
class="zan-radio"
:class="{
'zan-radio--disabled': isDisabled
@@ -69,6 +70,10 @@ export default {
return;
}
this.currentValue = this.name;
},
handleRadioClick() {
this.$emit('click');
}
}
};