Skip to content

formHtml HTML

基础用法

vue
<script setup lang="ts">
import type { BasicForm } from '@/types/form'

const formConfig = reactive<BasicForm>({
  formItems: [
    {
      label: '',
      value: '',
      name: '',
      type: 'form-html',
      props: {
        html: '<div>123</div>',
      },
    },
  ],
})
</script>