Select a specific tab in Ionic 2

后端 未结 4 925
鱼传尺愫
鱼传尺愫 2021-02-14 17:22

I\'m trying to use the Ionic 2 and I\'m still struggling with most basic tasks, such as select a tab when the app is loading.

I\'ve tried to inject the Tabs

4条回答
  •  甜味超标
    2021-02-14 17:49

    In Ionic 3 and angular 4.

    import { Tabs } from 'ionic-angular/navigation/nav-interfaces';
    @ViewChild('myTabs') tabRef: Tabs; - With in the class about constructor.
    this.tabRef.select(0, {}); // In the method where you want set tab.
    

提交回复
热议问题