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() {
|
| }
| }
|
|