下面的demo中,data
属性的两种写法分别在什么时候使用?一个是return出来,一个是直接写一个数组。
new Vue({
el: "#app",
data: function () {
return {
items: []
}
}
});
new Vue({
el: "#app",
data: {
items: []
}
});
组件的定义只接受 function。
同时,注意,不应该对 data 属性使用箭头函数 (例如data: () => { return { a: this.myProp }})。理由是箭头函数绑定了父级作用域的上下文,所以 this 将不会按照期望指向 Vue 实例,this.myProp 将是 undefined。
文档
http://cn.vuejs.org/v2/api/#data