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