typescript IF_05_05_Office_GoBack_TS
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript IF_05_05_Office_GoBack_TS相关的知识,希望对你有一定的参考价值。
import { Component, OnInit } from '@angular/core';
import { NavController } from '@ionic/angular';
@Component({
selector: 'app-office',
templateUrl: './office.page.html',
styleUrls: ['./office.page.scss'],
})
export class OfficePage implements OnInit {
constructor(private navCtrl: NavController) { }
goBack(){
this.navCtrl.goBack('/home');
}
ngOnInit() {
}
}
以上是关于typescript IF_05_05_Office_GoBack_TS的主要内容,如果未能解决你的问题,请参考以下文章
typescript IF_06_05_home.page.ts_3
html IF_03_05_Expand_button
typescript IF_05_06_NavigationService_TS
html IF_05_11_Popover_Office_HTML
html IF_05_09_Popover_Home_HTML
html IF_05_08_NavigationService_Office_HTML