import{aw as i,y as a,z as l,b0 as n}from"./chunks/framework.BCBheFgR.js";const g=JSON.parse('{"title":"Form组件属性 props","description":"","frontmatter":{},"headers":[],"relativePath":"api/form/form-props.md","filePath":"api/form/form-props.md"}'),t={name:"api/form/form-props.md"};function p(e,s,h,r,k,o){return l(),a("div",null,s[0]||(s[0]=[n(`
详情: 表单配置
默认值: []
类型: FormConfig
示例:
<template>
<m-form-dialog :config="config"></m-form-dialog>
</template>
<script setup>
import { ref } from 'Vue';
const config = ref([
{
name: 'text',
text: '文本',
},
{
name: 'multiple',
text: '多行文本',
type: 'switch',
},
]);
</script>
详情: 表单初始化值
默认值: {}
类型: Object
示例:
<template>
<m-form-dialog :init-values="initValues"></m-form-dialog>
</template>
<script setup>
import { ref } from 'Vue';
const initValues = ref([
text: 'text',
multiply: true,
]);
</script>
表单域标签的宽度,例如 '50px'。 作为 Form 直接子元素的 form-item 会继承该值。 支持 auto
默认值: '200px'
类型: string | number
详情: 是否禁用该表单内的所有组件。 若设置为 true,则表单内组件上的 disabled 属性不再生效
默认值: false
类型: boolean
详情:
默认值:
类型:
详情:
默认值:
类型:
详情: 用于控制该表单内组件的尺寸
类型: 'small' | 'default' | 'large'
详情: 行内表单模式
默认值: false
类型: boolean
详情: 表单域标签的位置, 当设置为 left 或 right 时,则也需要设置 label-width 属性
默认值: ’right'
类型: 'left' | 'right' | 'top
详情: 作为表单项的组件实例的key
默认值: '__key'
类型: string
详情: tooltip弹出层的class
类型: string