本文整理汇总了TypeScript中ionic-framework/ionic.IonicApp类的典型用法代码示例。如果您正苦于以下问题:TypeScript IonicApp类的具体用法?TypeScript IonicApp怎么用?TypeScript IonicApp使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了IonicApp类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: onPageWillLeave
onPageWillLeave() {
// enable the root left menu when leaving the tutorial page
this.app.getComponent('leftMenu').enable(true);
}
示例2: openPage
public openPage(page: any): void {
// close the menu when clicking a link from the menu
this.app.getComponent('leftMenu').close();
// navigate to the new page if it is not the current page
this.app.getComponent('nav').setRoot(page.component);
};
示例3: onPageDidEnter
onPageDidEnter() {
// the root left menu should be disabled on the tutorial page
this.app.getComponent('leftMenu').enable(false);
}