标签:++ 直接 事件对象 cli get value nbsp eve 传参
<button @click="handleAdd1()">add1</button>
<button @click="handleAdd2">add2</button>
<button @click="count++">add3</button>
不带括号可以直接传一个事件对象
带括号的可以传参。
<input type="text" @input="handleInput($event)" @keyup.65="handleKeyUp"/>
handleInput(ev){
console.log(ev.target.value);
this.mytext= ev.target.value;
}
还可以搞$event,加传参
<input type="text" @input="handleInput($event,param)" @keyup.65="handleKeyUp"/>
handleInput(ev,param){
console.log(ev.target.value);
this.mytext= ev.target.value;
}
标签:++ 直接 事件对象 cli get value nbsp eve 传参
原文地址:https://www.cnblogs.com/ll15888/p/11478483.html