今天给大家分享一下angular监听组件属性变化的方法,说不多说直接上代码:
_type = 'type';
set type(val: string) {
this._type = val;
this.typeChange(val);
}
get type(): string {
return this._type;
}
typeChange(type: string): void {
console.log('type:', type);
}
模板部分直接监听 type 即可。好啦,关于angular监听组件属性变化的分享就到这里,更多内容可关注慕课网~