【整理】vue.js学习1_hello.world

原创文章,转载请注明: 转载自勤奋的小青蛙
本文链接地址: 【整理】vue.js学习1_hello.world

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;
    }
  }
});
原创文章,转载请注明: 转载自勤奋的小青蛙
本文链接地址: 【整理】vue.js学习1_hello.world

文章的脚注信息由WordPress的wp-posturl插件自动生成



|2|left
打赏

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: