要設定點擊某的地方後 focus 到指定的輸入欄位,在 Vue 2.0 之後可以這麼麼做,先準備類似這樣的 html:

<input type="text" ref="content" />
<button @click="getFocus">getFocus</button>


vue 的部分:

getFocus(){
    this.$refs.content.focus()
}

 

完整的程式碼: