Files
psp_panel/src/app/shared/components/fields/description.component.ts
T

14 lines
501 B
TypeScript
Raw Normal View History

import { Component, Input } from '@angular/core';
import { FormControl, ReactiveFormsModule } from '@angular/forms';
import { InputComponent } from '../input/input.component';
@Component({
selector: 'field-description',
template: `<app-input label="توضیحات" [control]="control" [name]="name" />`,
imports: [ReactiveFormsModule, InputComponent],
})
export class DescriptionComponent {
@Input({ required: true }) control = new FormControl<string>('');
@Input() name = 'description';
}