WeChat applet child component listens to the value passed by the parent component

Component({
    
    
  properties: {
    
    
    qa: Object,
  },
  observers: {
    
    
    'qa': function (params) {
    
    
  		console.log(params)  
  },

Guess you like

Origin blog.csdn.net/AK852369/article/details/113586105