fix: password add focus blur methods #1485
parent
d294328319
commit
843d9dc82f
|
@ -31,6 +31,12 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
focus() {
|
||||||
|
this.$refs.input.focus();
|
||||||
|
},
|
||||||
|
blur() {
|
||||||
|
this.$refs.input.blur();
|
||||||
|
},
|
||||||
onChange() {
|
onChange() {
|
||||||
this.setState({
|
this.setState({
|
||||||
visible: !this.visible,
|
visible: !this.visible,
|
||||||
|
@ -85,6 +91,7 @@ export default {
|
||||||
type: this.visible ? 'text' : 'password',
|
type: this.visible ? 'text' : 'password',
|
||||||
},
|
},
|
||||||
class: inputClassName,
|
class: inputClassName,
|
||||||
|
ref: 'input',
|
||||||
on: this.$listeners,
|
on: this.$listeners,
|
||||||
};
|
};
|
||||||
return <Input {...inputProps} />;
|
return <Input {...inputProps} />;
|
||||||
|
|
Loading…
Reference in New Issue