2021-11-27 22:21:52 +08:00
|
|
|
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-dashboard',
|
|
|
|
|
templateUrl: './dashboard.component.html',
|
2021-11-28 14:58:20 +08:00
|
|
|
styleUrls: ['./dashboard.component.less'],
|
2021-11-27 22:21:52 +08:00
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
|
|
|
})
|
|
|
|
|
export class DashboardComponent {}
|