mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 23:58:13 +08:00
20 lines
458 B
TypeScript
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);
|
|
}
|
|
}
|