<el-input> 組件中使用@click綁定點擊事件不能被觸發
應在<el-input>上使用修飾符 .native如下實現
<el-input v-on:click.native="getMassage" />
或者
<el-input @click.native="getMassage" />
getMassage是點擊觸發的方法,在methods:{}中添加getMassage方法即可
getMassage(){ alert("getMassage") }
<el-input> 組件中使用@click綁定點擊事件不能被觸發
應在<el-input>上使用修飾符 .native如下實現
<el-input v-on:click.native="getMassage" />
或者
<el-input @click.native="getMassage" />
getMassage是點擊觸發的方法,在methods:{}中添加getMassage方法即可
getMassage(){ alert("getMassage") }
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。