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