Files
ionic-framework/scripts/templates/page/ts.tmpl

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');
}
}