typescript 小吃吧,3.ts

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 小吃吧,3.ts相关的知识,希望对你有一定的参考价值。

@Component({
  template: `
   <div class="snackbar-container"
     (animationend)="animationDone($event)">
     {{ content }} <button (click)="close()">&#x2715;</button>
   </div>
  `
})
export class SnackbarComponent {
  ..
  @Output() afterClose = new EventEmitter();

  animationDone(event: AnimationEvent) {
    if (event.animationName === 'snackbarOut') {
      this.afterClose.emit(true);
    }
  }
  ...
}

以上是关于typescript 小吃吧,3.ts的主要内容,如果未能解决你的问题,请参考以下文章

typescript 小吃吧,2.ts

Angular Material - 不关闭 Material 小吃吧

为啥使用 mapview 看不到 android 小吃吧?

Vuetify 小吃吧超时时更新父状态

(android) 小吃吧结束后如何关闭活动?

如何在颤动中显示小吃吧无限持续时间?