mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
20 lines
467 B
JavaScript
20 lines
467 B
JavaScript
import {bootstrap} from 'angular2/core';
|
|
import {Component, Template} from 'angular2/angular2';
|
|
import {Tabbar} from 'ionic/components/tabbar/tabbar';
|
|
// import {Hammer} from 'hammerjs';
|
|
|
|
import 'ionic/components/tabbar/mixins/android/android-tabbar';
|
|
|
|
@Component({ selector: '[playground-main]' })
|
|
@Template({
|
|
url: 'main.html',
|
|
directives: [Tabbar]
|
|
})
|
|
class PlaygroundMain {
|
|
constructor() {
|
|
console.log('Playground Start')
|
|
}
|
|
}
|
|
|
|
bootstrap(PlaygroundMain)
|