mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
17 lines
337 B
JavaScript
17 lines
337 B
JavaScript
import {Component, Directive} from 'angular2/src/core/annotations_impl/annotations';
|
|
|
|
import {IonicComponent} from 'ionic/config/component'
|
|
|
|
|
|
@Directive({
|
|
selector: 'ion-input'
|
|
})
|
|
export class Input {
|
|
constructor() {
|
|
//this.config = Button.config.invoke(this)
|
|
console.log('INPUT');
|
|
}
|
|
}
|
|
// new IonicComponent(Input, {
|
|
// })
|