feat(frontend,API): Add PUT operations, integrate API, add first from engine
This commit is contained in:
14
legalconsenthub/components/formelements/TheInput.vue
Normal file
14
legalconsenthub/components/formelements/TheInput.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<UFormField :label="label" :name="name">
|
||||
<UInput v-model="model" />
|
||||
</UFormField>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
label?: string
|
||||
name?: string
|
||||
}>()
|
||||
|
||||
const model = defineModel({ type: String })
|
||||
</script>
|
||||
Reference in New Issue
Block a user