在使用子组件到父组件交互时不允许我传递错误值
Not allowing me to pass false value while using child to parent component interaction
'boolean' 类型的参数不能分配给 'string | symbol' 类型的参数。ts(2345)
cancel() {
this.cancelRegister.emit(false);
}
您正在尝试将 boolean
值传递给需要 string
或 symbol
的 EventEmitter
。
确保 cancelRegister
定义如下:
cancelRegister = new EventEmitter<boolean>();
或者保持原样并将字符串值传递给 emit
'boolean' 类型的参数不能分配给 'string | symbol' 类型的参数。ts(2345)
cancel() {
this.cancelRegister.emit(false);
}
您正在尝试将 boolean
值传递给需要 string
或 symbol
的 EventEmitter
。
确保 cancelRegister
定义如下:
cancelRegister = new EventEmitter<boolean>();
或者保持原样并将字符串值传递给 emit