# hhan-ui **Repository Path**: hhan1027/hhan-ui ## Basic Information - **Project Name**: hhan-ui - **Description**: 适用于vue2的组件库 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 5 - **Forks**: 0 - **Created**: 2022-05-05 - **Last Updated**: 2024-05-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [Github - hhhxmm/hhan-ui](https://github.com/hhhxmm/hhan-ui) [Gitee - 隔年雪/hhan-ui](https://gitee.com/hhan1027/hhan-ui) [NPM - hhan1027/hhan-ui](https://www.npmjs.com/package/hhan-ui) # 安装 适用于vue2 ``` npm i hhan-ui ``` # 导入 ## 在main.js中 ```vue import Hhan from 'hhan-ui'; Vue.use(Hhan); ``` # 组件 ## hhan-rate 评分 | 属性 | 描述 | 类型 | 默认值 | 必传 | | ------------- | ------------------------------ | ------- | ---------------------------------------- | ---- | | value | 评分值 使用v-model进行双向绑定 | Number | - | 是 | | max | 最大评分值 | Number | 5 | 否 | | iconClass | 字体图标类名 | String | icon-star-full | 否 | | inactiveColor | 未激活颜色 | String | \#C6D1DE | 否 | | activeColor | 激活颜色 | String | \#F7BA2A | 否 | | showText | 是否显示文字 | Boolean | false | 否 | | texts | 显示的文字 | Array | ["极差", "失望", "一般", "满意", "惊喜"] | 否 | | textColor | 显示的文字颜色 | String | #1F2D3D | 否 | ```vue ``` ## hhan-switch 开关 | 属性 | 描述 | 类型 | 默认值 | 必传 | | ------------- | -------------------------------- | ------------------------- | -------- | ---- | | value | 是否激活 使用v-model进行双向绑定 | [Boolean, String, Number] | false | 是 | | width | 宽度 | Number | 40 | 否 | | activeColor | 激活颜色 | String | #409EFF | 否 | | inactiveColor | 未激活颜色 | String | \#C0CCDA | 否 | ```vue ``` ## hhan-slider 滑块 | 属性 | 描述 | 类型 | 默认值 | 必传 | | ---------------------- | ----------------------- | ------- | ------------------ | ---- | | value | 使用v-model进行双向绑定 | Number | - | 是 | | min | 最小值 | Number | 0 | 否 | | max | 最大值 | Number | 100 | 否 | | runwayBackroundColor | | String | #e4e7ed | 否 | | barBackgroundColor | 进度背景颜色 | String | #409eff | 否 | | buttonrBackgroundColor | 按钮背景颜色 | String | #fff | 否 | | buttonrBorderColor | 按钮边框颜色 | String | #409eff | 否 | | showText | 是否显示文字 | Boolean | false | 否 | | textColor | 文字颜色 | String | #fff | 否 | | textRadius | 文字背景圆角 | Number | 6 | 否 | | textBackgroundColor | 文字背景颜色 | String | rgba(0, 0, 0, 0.5) | 否 | ```vue ``` ## hhan-button 按钮 | 参数 | 说明 | 类型 | 可选值 | 默认值 | | :---------- | :------------- | :------ | :------------------------------------------------- | :----- | | size | 尺寸 | string | medium / small / mini | — | | type | 类型 | string | primary / success / warning / danger / info / text | — | | plain | 是否朴素按钮 | boolean | — | false | | round | 是否圆角按钮 | boolean | — | false | | circle | 是否圆形按钮 | boolean | — | false | | native-type | 原生 type 属性 | string | button / submit / reset | button | ```vue ```