Vue 设置焦点

使用ref定位控件



mounted() {  
        //得到焦点
        this.$nextTick(() => {
            this.$refs.inputName.focus()
        })     

}

你可能感兴趣的:(vue.js,javascript,前端)