mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
21 lines
453 B
JavaScript
21 lines
453 B
JavaScript
import {Page, NavController} from 'ionic-angular';
|
|
|
|
/*
|
|
Generated class for the <%= jsClassName %> page.
|
|
|
|
See http://ionicframework.com/docs/v2/components/#navigation for more info on
|
|
Ionic pages and navigation.
|
|
*/
|
|
@Page({
|
|
templateUrl: 'build/<%= directory %>/<%= fileName %>/<%= fileName %>.html',
|
|
})
|
|
export class <%= jsClassName %> {
|
|
static get parameters() {
|
|
return [[NavController]];
|
|
}
|
|
|
|
constructor(nav) {
|
|
this.nav = nav;
|
|
}
|
|
}
|