mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
25 lines
498 B
Cheetah
25 lines
498 B
Cheetah
import { Component } from '@angular/core';
|
|
$IMPORTSTATEMENT
|
|
|
|
/**
|
|
* Generated class for the $CLASSNAME page.
|
|
*
|
|
* See https://ionicframework.com/docs/components/#navigation for more info on
|
|
* Ionic pages and navigation.
|
|
*/
|
|
$IONICPAGE
|
|
@Component({
|
|
selector: 'page-$FILENAME',
|
|
templateUrl: '$FILENAME.html',
|
|
})
|
|
export class $CLASSNAME {
|
|
|
|
constructor(public navCtrl: NavController, public navParams: NavParams) {
|
|
}
|
|
|
|
ionViewDidLoad() {
|
|
console.log('ionViewDidLoad $CLASSNAME');
|
|
}
|
|
|
|
}
|