vue父传子渲染时报错 “TypeError: Cannot read property ‘xxx‘ of undefined“

问题:父组件传值给子组件虽然最后页面可以正常显示。传过来的数据也在,但是会报:"TypeError: Cannot read property 'xxx' of undefined"

原因:父组件传值给子组件但是页面已经开始渲染里但是数据还没传过来

解决方案:
加一个判断如果传给子组件的值还没过来的话先不去加载

    

你可能感兴趣的:(vue父传子渲染时报错 “TypeError: Cannot read property ‘xxx‘ of undefined“)