mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
14 lines
190 B
JavaScript
14 lines
190 B
JavaScript
|
|
export class NavController {
|
|
constructor() {
|
|
}
|
|
|
|
push() {
|
|
return this.nav.push.apply(this.nav, arguments);
|
|
}
|
|
|
|
pop() {
|
|
return this.nav.pop.apply(this.nav, arguments);
|
|
}
|
|
}
|