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