Appearance
<script setup lang="ts"> import type { BasicForm } from '@/types/form' const formConfig = reactive<BasicForm>({ formItems: [ { label: '', value: '', name: '', type: 'button', props: { type: 'primary', buttonName: '按钮', // 支持el-button的props }, }, ], }) </script>