feat(backend,frontend): Update application form, add label to switch

This commit is contained in:
2025-03-03 06:39:57 +01:00
parent 8388cbe1a8
commit fffa1086a5
5 changed files with 79 additions and 11 deletions

View File

@@ -6,7 +6,6 @@
import type { FormOptionDto } from '~/.api-client'
const props = defineProps<{
label?: string
formOptions: FormOptionDto[]
}>()
@@ -24,4 +23,6 @@ const modelValue = computed({
}
}
})
const label = computed(() => props.formOptions?.[0].label ?? '')
</script>