最近項(xiàng)目中在做評論的時(shí)候,需要自動(dòng)滾動(dòng)到評論框夜郁,并且讓評論框自動(dòng)聚焦什燕,這就需要手動(dòng)觸發(fā)輸入框的 focus 狀態(tài)。
原理其實(shí)很簡單竞端,Element 已經(jīng)提供了 focus 方法屎即,但是文檔并沒有寫明如何去調(diào)用,經(jīng)過 Google 大法事富,算是找到了解決辦法技俐。
給 el-input 標(biāo)簽 加上 ref 屬性
<el-input v-model="input" placeholder="請輸入內(nèi)容" ref="input"></el-input>
利用 ref 獲取 el-input 并調(diào)用 focus 方法
this.$refs.input.focus();
最后,猛戳這里统台,查看Demo雕擂。