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