在JSFiddle里输入:
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app">
<p>
<input type="text" v-on:input="changeTitle">
{{title}}
</p>
</div>
new Vue({
el: '#app',
data: {
title: 'teruun'
},
methods: {
changeTitle: function(event) {
this.title = event.target.value;
}
}
});
其中 v-on 监听了input时间,并把event作为参数调用了changeTitle函数(这也是作为参数)