mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 23:58:13 +08:00
docs(route): fix typo (#15673)
This commit is contained in:
2
core/src/components.d.ts
vendored
2
core/src/components.d.ts
vendored
@ -3612,7 +3612,7 @@ export namespace Components {
|
|||||||
*/
|
*/
|
||||||
'componentProps'?: {[key: string]: any};
|
'componentProps'?: {[key: string]: any};
|
||||||
/**
|
/**
|
||||||
* Used internaly by `ion-router` to know when this route did change.
|
* Used internally by `ion-router` to know when this route did change.
|
||||||
*/
|
*/
|
||||||
'onIonRouteDataChanged'?: (event: CustomEvent<any>) => void;
|
'onIonRouteDataChanged'?: (event: CustomEvent<any>) => void;
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -20,7 +20,7 @@ Router is a component that can take a component, and render it when the Browser
|
|||||||
|
|
||||||
| Event | Description |
|
| Event | Description |
|
||||||
| --------------------- | ------------------------------------------------------------------ |
|
| --------------------- | ------------------------------------------------------------------ |
|
||||||
| `ionRouteDataChanged` | Used internaly by `ion-router` to know when this route did change. |
|
| `ionRouteDataChanged` | Used internally by `ion-router` to know when this route did change. |
|
||||||
|
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
|
|||||||
@ -29,7 +29,7 @@ export class Route implements ComponentInterface {
|
|||||||
@Prop() componentProps?: {[key: string]: any};
|
@Prop() componentProps?: {[key: string]: any};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used internaly by `ion-router` to know when this route did change.
|
* Used internally by `ion-router` to know when this route did change.
|
||||||
*/
|
*/
|
||||||
@Event() ionRouteDataChanged!: EventEmitter<any>;
|
@Event() ionRouteDataChanged!: EventEmitter<any>;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user