ustbhuangyi / vue-sell

:rice: Vue.js高仿饿了么外卖App课程源码 http://coding.imooc.com/class/74.html
3.46k stars 1.36k forks source link

父组件app.vue通过ajax请求更新seller的值传给子组件v-header,v-header无法获得更新的seller的值? #66

Open Eavanzhou1030 opened 6 years ago

Eavanzhou1030 commented 6 years ago

created(){ this.$http.get('/api/seller?id=' + this.seller.id).then((response) => { response = response.body; if(response.errno === ERR_OK){ this.seller = Object.assign({},this.seller,response.data); } }); },