15 lines
246 B
Vue
15 lines
246 B
Vue
<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>
|