# Longly-ui
**Repository Path**: pengke-study/Longly-ui
## Basic Information
- **Project Name**: Longly-ui
- **Description**: 开源组件库,个人兴趣
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 0
- **Created**: 2022-10-13
- **Last Updated**: 2023-05-14
## Categories & Tags
**Categories**: Uncategorized
**Tags**: ui组件库
## README
# longly-ui 组件库
### 快速开始
#### 1.引入组件库
```javascript
//按需引入
import {LonglyCard,LonglyRefresh} from '../components/lib/index.js';
Vue.use(LonglyCard)
Vue.use(LonglyRefresh)
```
### 组件
#### 1.面板组件
> LonglyCard
##### 相关属性
| 属性名 |类型 | 概述 |
| ---- |----| ---- |
| width | Number|卡片宽度 |
| imgSrc | String|卡片图片地址 |
| imgHeight|Number|图片高度|
| context|String|卡片内容(也可通过默认插槽写入)|
| isShadow|Boolean|是否鼠标移入显示阴影|
| footer(具名插槽)|String|底部内容|
##### 示例
```html
碰磕QQ学习交流群:796542949
立刻加入
```
#### 2.下拉刷新组件
> LonglyRefresh
##### 相关属性
| 属性名 |类型 | 概述 |
| ---- |----| ---- |
| loadingTitle |String | 加载中提示字 |
| defalutTitle|String | 默认提示字 |
| upTitle|String |滑到一定距离的提示字|
| km|String |滑动触发刷新的提示字|
##### 示例
```html
```