mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
tabs fixes
This commit is contained in:
23
src/components/nav-view/nav-view.js
Normal file
23
src/components/nav-view/nav-view.js
Normal file
@ -0,0 +1,23 @@
|
||||
import {Ion} from '../ion'
|
||||
|
||||
export class NavView extends Ion {
|
||||
|
||||
// viewControllers: Stack<ViewController>;
|
||||
// visibleViewController: ViewController;
|
||||
|
||||
// push(viewController) {
|
||||
// stack.push(viewController)
|
||||
// }
|
||||
// pop(viewController) {
|
||||
// stack.pop(viewController)
|
||||
// }
|
||||
// set viewControllers(v) {
|
||||
// this.viewControllers = v
|
||||
// }
|
||||
|
||||
constructor() {
|
||||
console.log('construct nav-view')
|
||||
this.history = [] // <---- would be fancy pants
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user