mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
17 lines
333 B
JavaScript
17 lines
333 B
JavaScript
import {Component, View, bootstrap} from 'angular2/angular2';
|
|
import {ActionMenu} from 'ionic/components/action-menu/action-menu';
|
|
|
|
|
|
@Component({ selector: '[ion-app]' })
|
|
@View({
|
|
templateUrl: 'main.html',
|
|
directives: [ActionMenu]
|
|
})
|
|
class IonicApp {
|
|
constructor() {
|
|
console.log('IonicApp Start')
|
|
}
|
|
}
|
|
|
|
bootstrap(IonicApp)
|