- export class FormBase {
- constructor(options = {}) {
- this.value = options.value;
- this.key = options.key || undefined;
- this.label = options.label || '';
- this.placeholder = options.placeholder || '';
- this.required = !!options.required;
- this.controlType = options.controlType || '';
- this.options = options.options || [];
- this.icon = options.icon || '';
- }
- }
|