mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
36 lines
723 B
TypeScript
36 lines
723 B
TypeScript
import {App, IonicApp, Page} from 'ionic/ionic';
|
|
import {forwardRef} from 'angular2/angular2';
|
|
import * as helpers from '../helpers';
|
|
|
|
@Page({
|
|
templateUrl: 'menus/menu-home.html',
|
|
directives: [forwardRef(() => helpers.AndroidAttribute)]
|
|
})
|
|
export class MenusPage{
|
|
constructor() {
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'menus/menu-home.html',
|
|
directives: [forwardRef(() => helpers.AndroidAttribute)]
|
|
})
|
|
export class PageOne{
|
|
constructor() {
|
|
}
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'menus/menu-friends.html',
|
|
directives: [forwardRef(() => helpers.AndroidAttribute)]
|
|
})
|
|
export class PageTwo{
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'menus/menu-events.html',
|
|
directives: [forwardRef(() => helpers.AndroidAttribute)]
|
|
})
|
|
export class PageThree{
|
|
}
|