解决vue props 拿不到值的问题
程序员文章站
2023-11-17 14:27:34
方案一:
在子组件中设置v-if='flag',初始值false,在成功获取数据后设置为true
// 子组件
方案一:
在子组件中设置v-if='flag',初始值false,在成功获取数据后设置为true
// 子组件 <echarts :datas="conditionstatisticsdata" v-if="flag"></echarts> // 成功获取数据后 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) } },
以上这篇解决vue props 拿不到值的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。