framadate-responsive/src/app/ui/erasable-input/erasable-input.component.ts

25 lines
506 B
TypeScript
Raw Normal View History

import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
@Component({
selector: 'framadate-erasable-input',
templateUrl: './erasable-input.component.html',
styleUrls: ['./erasable-input.component.scss']
})
export class ErasableInputComponent implements OnInit {
@Output() inputModelChange = new EventEmitter();
@Input() inputModel;
constructor() {
}
ngOnInit() {
}
eraseInput() {
//
this.inputModelChange.emit('');
}
}