vue項目中input框默認獲得焦點,回車選中輸入文本

項目中遇到的需求:

輸入框默認獲取焦點,回車後選中文本信息

<input ref="code" type="text"  @keyup.enter="enterPress()" v-model="code"/>
export default {
    data() {
	return {
            code:'',
        }
    },
    methods:{
        enterPress() {//回車事件
            this.$refs.code.select();//輸入框選中狀態
        }
    },
    mounted() {
	this.$nextTick(() => {
	  this.$refs.code.focus();//輸入框默認獲取焦點
	});
    },
    
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章