mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
export class Lifecycle {
|
|
static viewLoaded(component) {
|
|
component.viewLoaded && component.viewLoaded();
|
|
}
|
|
static viewWillShow(component) {
|
|
component.viewWillShow && component.viewWillShow();
|
|
}
|
|
}
|