MaxKB/ui/src/components/dynamics-form/FormItemLabel.vue
wangdan-fit2cloud 69e35b36aa
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
feat: layout
2025-04-28 18:15:41 +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>