fix(core): update

This commit is contained in:
2024-02-03 11:26:15 +01:00
parent d029a6c346
commit be5124217a
7 changed files with 190 additions and 1 deletions

View File

@ -101,6 +101,10 @@ export class DeesForm extends DeesElement {
}
}
/**
* collects the form data
* @returns
*/
public async collectFormData() {
const children = this.getFormElements();
const valueObject: { [key: string]: string | number | boolean | any[] } = {};