Uncaught TypeError: Cannot read property 'childComponent' of undefined
获取子组件实例:this.$refs.*.childComponent(),如上报错!
解决方式:setTimeOut
setTimeout(()=>{
this.$refs.*.childComponent();
},10)
Uncaught TypeError: Cannot read property 'childComponent' of undefined
获取子组件实例:this.$refs.*.childComponent(),如上报错!
解决方式:setTimeOut
setTimeout(()=>{
this.$refs.*.childComponent();
},10)