<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>v-on传参</title>
</head>
<body>
<div id="app">
<input type="button" value="v-on传参" v-on:click="doIt(666,'老铁')" />
<input type="text" @keyup.enter="sayHi($event)">
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
var app = new Vue({
el: '#app',
methods: {
doIt: function (p1, p2) {
alert('触发事件:' + p2 + '双击' + p1)
},
sayHi: function (input) {
alert(event.currentTarget.value + "吃了么")
}
}
})
</script>
</body>
</html>