mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
25 lines
551 B
Cheetah
25 lines
551 B
Cheetah
import { Component } from '@angular/core';
|
|
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
|
|
|
/**
|
|
* Generated class for the $CLASSNAME page.
|
|
*
|
|
* See http://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');
|
|
}
|
|
|
|
}
|