Appearance
<script setup lang="ts"> import type { BasicForm } from '@/types/form' const formConfig = reactive<BasicForm>({ formItems: [ { label: '', value: '', name: '', type: 'tag', props: { type: 'success', tagName: '标签', // 支持el-tag的props }, }, ], }) </script>