<script>
new Vue({
el: '#app',
data:function () {
return{
items:[]
}
},
mounted : function() {
this.getItems();
},
methods:{
getItems:function () {
this.$http.get('resourse.json').then(function (response) {
var data=JSON.parse(response.data)
this.$set('items', response.data)
this.items=data.list
console.log(this.items)
});
}
}
});
</script>
vue 2.0系列注意的寫法
vm.$set(object,key,value)
vue 1.0系列
vm.$set(keypath,value)