Files
ionic-framework/packages/angular/demo/src/app/inputs/inputs-test-page.component.ts
2017-11-15 14:45:48 -06:00

20 lines
458 B
TypeScript

import { Component, OnInit, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'app-inputs-test-page',
templateUrl: './inputs-test-page.component.html',
styleUrls: ['./inputs-test-page.component.css'],
encapsulation: ViewEncapsulation.None
})
export class InputsTestPageComponent implements OnInit {
testInputOne = 'This is data for test input one';
constructor() {}
ngOnInit() {}
changed(evt) {
console.log(evt);
}
}