Vendor app Client: Maiora
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

25 行
484 B

  1. import { Component, OnInit } from '@angular/core';
  2. import { IFilterOption } from '../models/filter-option';
  3. @Component({
  4. selector: 'app-dashboard',
  5. templateUrl: './dashboard.component.html',
  6. styleUrls: ['./dashboard.component.scss']
  7. })
  8. export class DashboardComponent implements OnInit {
  9. filterOptions: Array<IFilterOption>;
  10. constructor() { }
  11. ngOnInit() {
  12. this.filterOptions = [{
  13. name: 'Yesterday',
  14. id: 'yesterday'
  15. }, {
  16. name: 'Today',
  17. id: 'today'
  18. }];
  19. }
  20. }