vue input自动获取焦点

方法一  这个方法适合vue插件,id比较好绑定

// html 部分




// js部分
mounted() {

            this.$nextTick(() =>{
                document.getElementById('phone').focus();
            })

        },

方法二  这个如果插件解决不了ref的绑定还是用ID吧

//html 部分




// js 部分
mounted() {

            this.$nextTick(() =>{
                this.$refs.name.focus()
            })

        },

 

你可能感兴趣的:(vue,javascript)