2023-12-26 01:05:45 +01:00
|
|
|
<template>
|
2023-12-26 20:20:32 +01:00
|
|
|
<f-switch
|
|
|
|
id="fieldrequired"
|
|
|
|
v-model="modelValue.required"
|
|
|
|
label="Erforderlich"
|
|
|
|
size="sm"
|
|
|
|
name="fieldrequired"
|
|
|
|
inline
|
|
|
|
@update:modelValue="$emit('update:modelValue', {...modelValue, required: $event})"
|
|
|
|
></f-switch>
|
|
|
|
<f-textarea
|
|
|
|
id="description"
|
|
|
|
label="Beschreibung"
|
|
|
|
size="sm"
|
|
|
|
:model-value="modelValue.description"
|
|
|
|
@update:modelValue="$emit('update:modelValue', {...modelValue, description: $event})"
|
|
|
|
></f-textarea>
|
2023-12-26 01:05:45 +01:00
|
|
|
</template>
|
|
|
|
|
2024-07-03 16:37:58 +02:00
|
|
|
<script lang="js" setup>
|
2023-12-26 01:05:45 +01:00
|
|
|
const props = defineProps({
|
|
|
|
modelValue: {},
|
2023-12-31 14:29:50 +01:00
|
|
|
meta: {},
|
|
|
|
payload: {},
|
2023-12-26 01:05:45 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:modelValue']);
|
|
|
|
</script>
|