最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
解决vue props 拿不到值的问题
时间:2022-06-25 15:40:51 编辑:袖梨 来源:一聚教程网
方案一:
在子组件中设置v-if='flag',初始值false,在成功获取数据后设置为true
// 子组件// 成功获取数据后 flag设置成true homeResource.getConditionData().then((res) => { this.flag = true if (res.data.status === 0) { console.log('条件', res.data.data) this.conditionStatisticsData = res.data.data } })
方案二:
watch监听props传递过来的值,在里边执行方法
watch: { datas: function (val) { this.chartsInit(val) } },