feat(fullstack): Add title and description to form element, add HTML and PDF endpoints for application form

This commit is contained in:
2025-05-25 10:35:18 +02:00
parent 502d4a7297
commit d553668893
9 changed files with 272 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
<template>
<template v-for="(formElement, index) in props.modelValue" :key="formElement.id">
<div class="group py-3 lg:py-4">
<p v-if="formElement.title" class="font-semibold">{{ formElement.title }}</p>
<p v-if="formElement.description" class="text-dimmed pb-3">{{ formElement.description }}</p>
<div class="flex justify-between">
<component
:is="getResolvedComponent(formElement)"