typescript NG-警报
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript NG-警报相关的知识,希望对你有一定的参考价值。
@Component({
selector:'[single-alert]',
template:`<div [class]="'alert alert-'+alert.type" *ngIf="dissmiss">
<span>{{alert.msg}}</span>
</div>`,
encapsulation:ViewEncapsulation.None
})
export class AlertComponent implements OnInit{
@Input() alert:any = {};
@Output() onClosed = new EventEmitter();
private dissmiss:boolean = true;
constructor(){}
ngOnInit(){
setTimeout(()=>{
this.dissmiss=false;
this.onClosed.emit();
},this.alert.timeout)
}
}
以上是关于typescript NG-警报的主要内容,如果未能解决你的问题,请参考以下文章
typescript NG-警报
typescript NG-警报
typescript NG-警报
typescript NG-警报
html NG-警报
typescript 按选择显示警报