mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-31 02:02:48 +00:00
12 lines
254 B
Vue
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>
|