maxkb/ui/src/components/dynamics-form/FormItemLabel.vue
2023-11-23 17:55:39 +08:00

12 lines
254 B
Vue

<template>
{{ formField.label }}
</template>
<script setup lang="ts">
import type { FormField } from '@/components/dynamics-form/type'
const props = defineProps<{
// 表单Item
formField: FormField
}>()
</script>
<style lang="scss" scoped></style>