Skip to content

tag 标签

基础用法

vue
<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>