wangtengyu
2018-11-06 a5a6487bd568fda30c7204ef3e3b7a2ed0a9019c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Component, ViewChild } from '@angular/core';
import { Tabs, IonicPage } from 'ionic-angular';
 
@IonicPage({
  name: 'maintabs'
})
@Component({
  templateUrl: 'tabs.html'
})
export class TabsPage {
 
  tab1Root = 'home';
  tab2Root = 'about';
  tab3Root = 'contact';
 
  @ViewChild('mainTabs') tabs: Tabs;
  constructor() {
 
  }
}