We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5526d70 commit 8587191Copy full SHA for 8587191
scripts/templates/page/ts.tmpl
@@ -1,5 +1,5 @@
1
import { Component } from '@angular/core';
2
-import { NavController } from 'ionic-angular';
+import { NavController, NavParams } from 'ionic-angular';
3
4
/*
5
Generated class for the $CLASSNAME page.
@@ -13,10 +13,10 @@ import { NavController } from 'ionic-angular';
13
})
14
export class $CLASSNAMEPage {
15
16
- constructor(public navCtrl: NavController) {}
+ constructor(public navCtrl: NavController, public navParams: NavParams) {}
17
18
ionViewDidLoad() {
19
- console.log('Hello $CLASSNAMEPage Page');
+ console.log('ionViewDidLoad $CLASSNAMEPage');
20
}
21
22
0 commit comments