1. 程式人生 > >vue使用element-ui 監聽使用回車鍵事件

vue使用element-ui 監聽使用回車鍵事件

  • 因為element-ui 對input做了封裝,使用@keyup.enter="fn"觸發Enter鍵事件就不會觸發,解決:後面追加.native。@keyup.enter.native="submitForm" 即可解決。
<el-form-item prop="password">
   <el-input type="password" v-model="password" @keyup.enter.native="submitForm" placeholder="請輸入密碼" >
        <el-button slot="prepend" icon=
"el-icon-lx-lock"></el-button> </el-input> </el-form-item>