[new feature] Stepper: add focus event (#2841)

This commit is contained in:
neverland
2019-02-25 19:38:23 +08:00
committed by GitHub
parent 2b9c30f906
commit 8f3dc3f9ca
4 changed files with 14 additions and 0 deletions

View File

@@ -107,6 +107,10 @@ export default sfc({
this.$emit(type);
},
onFocus(event) {
this.$emit('focus', event);
},
onBlur(event) {
this.currentValue = this.range(this.currentValue);
this.$emit('blur', event);
@@ -135,6 +139,7 @@ export default sfc({
value={this.currentValue}
disabled={this.disabled || this.disableInput}
onInput={this.onInput}
onFocus={this.onFocus}
onBlur={this.onBlur}
/>
<button