import { Component, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; @Component({ selector: 'header-task', template: `
cipchk

Please tell me what happened in a few words, don't go into details.

はなさき

ハルカソラトキヘダツヒカリ

苏先生

请告诉我,我应该说点什么好?

Kent

Please tell me what happened in a few words, don't go into details.

Jefferson

Please tell me what happened in a few words, don't go into details.

See All
`, changeDetection: ChangeDetectionStrategy.OnPush }) export class HeaderTaskComponent { loading = true; constructor(private cdr: ChangeDetectorRef) {} change() { setTimeout(() => { this.loading = false; this.cdr.detectChanges(); }, 500); } }