mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
13 lines
216 B
TypeScript
13 lines
216 B
TypeScript
import {Component, Directive} from 'angular2/angular2';
|
|
|
|
|
|
@Directive({
|
|
selector: 'ion-input'
|
|
})
|
|
export class Input {
|
|
constructor() {
|
|
//this.config = Button.config.invoke(this)
|
|
console.log('INPUT');
|
|
}
|
|
}
|