mounted钩子没走
mounted:function(){
this.cartView();
alert("1");
},
methods:{
cartView:function(){
this.$http.get("data/cartData.json").then(function(res){
console.log(res);
});
}
}去控制台没有找到cartData.json 然后在mounted方法里加了alert,也没有走。
这问题应该怎么解决?