vue父组件修改子组件的属性值(报错“TypeError: Cannot set properties of undefined (setting ‘status‘)“,解决方法)

  • 父组件:
  • 子组件:
  • 报错:
  • 原因:
  • 解决办法:

代码:

父组件:


//
change(){
this.$refs.examState.status=[0]//报错
}

子组件:




                    
                    

你可能感兴趣的:(vue,vue.js,前端,javascript)