标签:
1.数据绑定
html代码:
<div id="first" class="first">msg:{{msg}}</div>
js代码:
var vm=new Vue({ el:‘#first‘, data:{msg:‘hello vue.js‘}, created: function () { // `this` 指向 vm 实例 console.log(‘a is: ‘ + this.msg) } });
执行效果:
msg:hello vue.js
标签:
原文地址:http://www.cnblogs.com/fankeke/p/5661134.html