var vm = new Vue({ el:'.container', data:{ abc:'ac' }, Mounted:function(){ this.$nextTick(function(){ this.cartView() }) }, methods:{ cartView:function(){ this.$http.get('data/cart.json').then(function(res){ console.log(res) }) } }})
使用vue-resource不能獲取到本地的json文件
慕田峪9158850
2018-10-10 14:11:32