Skip to content

Ah UI基于 Element Plus 封装的业务组件库

高效、易用、可扩展

安装

bash
npm install @huazio/ah-ui

快速使用

vue
<template>
  <ah-form :schema="schema" v-model="formData" @submit="handleSubmit" />
</template>

<script setup>
import { AhForm } from '@huazio/ah-ui'

const formData = ref({})
const schema = [
  { prop: 'name', label: '姓名', component: 'input' },
  { prop: 'age', label: '年龄', component: 'number' }
]

const handleSubmit = (data) => {
  console.log(data)
}
</script>

Released under the MIT License.