mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
docs(nav): make inputs private
This commit is contained in:
@ -24,6 +24,7 @@ import {ViewController} from './view-controller';
|
||||
* component) to be loaded initially by any Nav you create, using
|
||||
* the 'root' property:
|
||||
*
|
||||
* @usage
|
||||
* ```ts
|
||||
* import {GettingStartedPage} from 'getting-started';
|
||||
* @App({
|
||||
@ -104,7 +105,15 @@ import {ViewController} from './view-controller';
|
||||
template: '<div #contents></div>'
|
||||
})
|
||||
export class Nav extends NavController {
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
@Input() root: Type;
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
@Input() swipeBackEnabled: any;
|
||||
|
||||
constructor(
|
||||
|
Reference in New Issue
Block a user