mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 05:21:52 +08:00
17 lines
403 B
JavaScript
17 lines
403 B
JavaScript
import {Page, NavController} from 'ionic/ionic';
|
|
|
|
/*
|
|
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 %> {
|
|
constructor(nav: NavController) {
|
|
this.nav = nav;
|
|
}
|
|
}
|