elementUI el-input聚焦

           inputFocus(){
                this.$nextTick(function () {
                    this.$refs.customerInput.$el.querySelector('input').focus();
                });
            },

  1.组件

<el-button @click="inputFocus">聚焦按钮</el-button>
<el-input ref="customerInput" v-model="form.num" @blur="blurSearchFor"></el-input>

  

posted @ 2019-07-31 15:14  董七  阅读(4746)  评论(1编辑  收藏  举报