vue $emit子组件到父组件传参

子组件AuditLog页面

     close() {
     this.show=false;
     this.$emit("tkStatus")    //向父组件发射
     },

父组件页面

            //接收参数定义方法
    // 接受子组件的参数
    child(){
      this.showAuditLog=false;
    },

你可能感兴趣的:(vue $emit子组件到父组件传参)