Tons of form shit

This commit is contained in:
Max Lynch
2015-05-05 16:49:23 -05:00
parent 13a1c897bf
commit 7ff86db352
15 changed files with 112 additions and 31 deletions

View File

@ -0,0 +1,15 @@
import {NgElement, Decorator} from 'angular2/angular2'
import {IonicComponent} from 'ionic/config/component'
@Decorator({
selector: 'ion-label'
})
export class Label {
constructor(
@NgElement() ngElement:NgElement
) {
this.domElement = ngElement.domElement
}
}
new IonicComponent(Label, {
})