<template>
<div>
<my-component v-if="isShow" />
</div></template>...data() { return {
isShow: false
}
},
methods: {
getData: function() { this.$http.get('xxxxxxx').then(r=>{ this.isShow = true;
})
}
}
...組件注冊了,請求成功了,其他代碼省略了。請教各位大佬,這樣寫,組件根本不渲染,即使isShow已經變為true,這是為什么呢?
添加回答
舉報
0/150
提交
取消