引言
sabium-framework是一个基于 React 构建的开源 UI 组件库。它以简单、易用、高效的设计理念,能够帮助开发者快速构建美观的Web应用。本文将介绍如何使用该npm包。
安装
使用 npm 进行安装:
npm install sabium-framework
示例
Button
import React from 'react'; import { Button } from 'sabium-framework'; function MyButton() { return ( <Button>Click me</Button> ); }
Button
组件的属性如下:
属性名 | 类型 | 默认值 | 描述 |
---|---|---|---|
size | 'large' | 'default' | 'small' | 'default' | 按钮大小 |
type | 'primary' | 'default' | 'danger' | 'link' | 'default' | 按钮类型 |
disabled | boolean | false | 是否禁用 |
loading | boolean | false | 是否加载中 |
onClick | function(e: React.MouseEvent) | 点击事件 |
Input
-- -------------------- ---- ------- ------ ------ - -------- - ---- -------- ------ - ----- - ---- ------------------- -------- --------- - ----- ------- --------- - ------------- ------ - ------ ------------- ------------- -- ------------------------- -- -- -
Input
组件的属性如下:
属性名 | 类型 | 默认值 | 描述 |
---|---|---|---|
type | string | 'text' | input类型 |
placeholder | string | 占位符 | |
value | string | '' | 输入框值 |
onChange | function(e) | 输入框改变事件 |
总结
sabium-framework 是一个高质量的UI组件库,通过 npm 包进行引用可以帮助我们快速构建美观、高效的Web应用。希望本文的介绍可以帮助大家更好地进行开发工作。如果您对 sabium-framework 或者本文有任何的问题和疑问,欢迎在评论区留言,我们会尽快回复。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/62018