typescript 小吃吧,2.ts
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 小吃吧,2.ts相关的知识,希望对你有一定的参考价值。
@Component({
template: `
<div class="snackbar-container">
{{ content }} <button (click)="close()">✕</button>
</div>
`
})
export class SnackbarComponent {
@Input() content = '';
@Output() afterClose = new EventEmitter();
constructor(private host: ElementRef<HTMLElement>) { }
get container(): HTMLElement {
return this.host.nativeElement.querySelector('.snackbar-container') as HTMLElement;
}
close() {
this.container.style.animation = 'snackbarOut 0.3s';
}
}
以上是关于typescript 小吃吧,2.ts的主要内容,如果未能解决你的问题,请参考以下文章
typescript 小吃吧,3.ts
Angular Material - 不关闭 Material 小吃吧
为啥使用 mapview 看不到 android 小吃吧?
Vuetify 小吃吧超时时更新父状态
(android) 小吃吧结束后如何关闭活动?
如何在颤动中显示小吃吧无限持续时间?