jsfiddle查看在线代码:https://jsfiddle.net/smax/c4mcxu7s/
html:
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app">
<input type="text" v-on:input="changeTitle">
<p>{{ title }}</p>
</div>
javascript文件:
new Vue({
el: '#app',
data: {
title: 'Hello World!'
},
methods: {
changeTitle: function(event) {
this.title = event.target.value;
}
}
});
文章的脚注信息由WordPress的wp-posturl插件自动生成
微信扫一扫,打赏作者吧~


