tab1.page.ts 336 B

123456789101112
  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'app-tab1',
  4. templateUrl: 'tab1.page.html',
  5. styleUrls: ['tab1.page.scss'],
  6. })
  7. export class Tab1Page {
  8. filterItems: string[] = ['跟练', '同城', '晒奖牌', '运动经验', '饮食经验', '蜕变记录', '跑步打卡', '饮食打卡'];
  9. constructor() {}
  10. }