<el-input ref="myInput"/>
this.$refs.myInput[0].focus();
this.$refs.myInput[0].blur();
this.$refs.myInput[0].select();
否则会报TypeError: Cannot read properties of undefined (reading ‘blur’)
<el-input ref="myInput"/>
this.$refs.myInput[0].focus();
this.$refs.myInput[0].blur();
this.$refs.myInput[0].select();
否则会报TypeError: Cannot read properties of undefined (reading ‘blur’)