📅  最后修改于: 2022-03-11 15:01:53.683000             🧑  作者: Mango
class InputExampleRefFocus extends Component {
handleRef = (c) => {
this.inputRef = c
}
focus = () => {
this.inputRef.focus()
}
render() {
return (
)
}
}