1.html
Vue:<button type=“button” @click=“a();b()”>vue按钮
React:<button type=“button” onClick={function(event){ a(); b()}}>react按钮
听说现在比较流行ES6?
React:<button type=“button” onClick={(event) => { a(); b();}}>react按钮
2.JS
methods:{
a(){
console.log(‘a’);
},
b(){
console.log(‘b’);
}
}