您好,登錄后才能下訂單哦!
組件綁定事件時
1. 普通組件綁定事件不能添加.native, 添加后事件失效
2. 自定義組件綁定事件需要添加.native, 否則事件無效
<template> <!-- <mt-field label="用戶名" placeholder="請輸入用戶名"></mt-field> --> <input type="text" @keyup.native="show($event)"> //普通組件不能添加.native, 添加后事件失效 </template> <script> import { MessageBox } from 'mint-ui'; export default { name: 'about', data(){ return{ } }, methods:{ show(ev){ MessageBox.alert('操作成功').then(action => { if(ev.keyCode==13){ console.log('enter'); } }); } } } </script>
<template> <mt-field label="用戶名" placeholder="請輸入用戶名" @keyup.native="show($event)"></mt-field> //自定義組件需要添加.native, 不添加事件無效 <!-- <input type="text" @keyup.native="show($event)"> --> </template> <script> import { MessageBox } from 'mint-ui'; export default { name: 'about', data(){ return{ } }, methods:{ show(ev){ MessageBox.alert('操作成功').then(action => { if(ev.keyCode==13){ console.log('enter'); } }); } } } </script>
以上這篇淺談vue中組件綁定事件時是否加.native就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。