Skip to content

By-Components-V3Vue3 组件库

基于 Vue 3 的现代化组件库,提供丰富的 UI 组件和工具函数

快速开始

安装

bash
npm install @weitutech/by-components-v3

使用

js
import { createApp } from 'vue'
import ByComponentsV3 from '@weitutech/by-components-v3'
import 'by-components-v3/dist/style.css'

const app = createApp(App)
app.use(ByComponentsV3)
app.mount('#app')

基础组件

  • ByForm - 表单组件,支持多种表单控件和验证
  • ByTable - 表格组件,基于 vxe-table,功能强大
  • ByPager - 分页组件,支持多种分页模式
  • ByCommonSelector - 通用选择器,支持多种选择模式和搜索功能

查看 组件文档 了解更多详情。

Released under the MIT License.