Skip to content

ERP 组件库

企业级 Vue3 组件解决方案

高效构建 · 开箱即用 · 专业可靠

ERP组件库
60+
高质量组件
100+
企业用户
99.9%
类型覆盖
70%
代码精简

简洁优雅的 API 设计

几行代码,即可构建复杂的企业级表单

vue
<template>
  <FkForm :config="formConfig" v-model="formData" @submit="onSubmit" />
</template>

<script setup lang="ts">
import { ref } from 'vue'
import type { FormConfig } from '@erp/common'

const formData = ref({ name: '', email: '', department: '' })

const formConfig: FormConfig = {
  labelWidth: '100px',
  items: [
    { type: 'input', prop: 'name', label: '姓名', required: true },
    { type: 'input', prop: 'email', label: '邮箱', rules: [{ type: 'email' }] },
    { type: 'select', prop: 'department', label: '部门', options: departments }
  ]
}

const onSubmit = (data) => console.log('提交数据:', data)
</script>

为什么选择我们

📦

按需加载

Tree Shaking 友好,只打包使用的组件,构建体积减少 60%

🌐

国际化

内置 i18n 方案,支持中英日韩等 20+ 语言,满足全球化需求

📱

响应式

自适应多端布局,桌面、平板、移动端完美适配

🔥

持续迭代

活跃的社区支持,每月发布新版本,快速响应需求

准备好开始了吗?

只需几分钟,即可在项目中使用 ERP 组件库

基于 MIT 许可发布