Vue Event
by jacob hsu
HTML
<div id="app">
<button v-on:click="handleClick('hello!',$event)">Button</button>
</div>
Vue
var vm = new Vue({
el: '#app',
data: {
name: 'Vue.js'
},
// 在 `methods` 对象中定义方法
methods: {
handleClick: function (msg, event) {
console.log(msg) // alert(msg)
}
}
})