# custom-ui-lib

> custom-ui library of Vue2

Latest version **0.1.7** (published 2022-06-07) · 0 weekly downloads

## Install

```sh
npm install custom-ui-lib
pnpm add custom-ui-lib
yarn add custom-ui-lib
bun add custom-ui-lib
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.7 |
| Published | 2022-06-07 |
| First published | 2022-06-05 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Unpacked size | 152.2 KB |
| Known vulnerabilities | 0 (+3 in 2 direct dependencies) |
| Install scripts | no |
| Maintainers | denniszhang |
| Keywords | custom-ui, custom-ui-lib, custom-ui library of Vue2 |

## Links

- npm: https://www.npmjs.com/package/custom-ui-lib
- npm.io page: https://npm.io/package/custom-ui-lib

## Dependencies (6)

- [vue](https://npm.io/package/vue.md) ^2.6.14
- [lodash](https://npm.io/package/lodash.md) ^4.17.15
- [core-js](https://npm.io/package/core-js.md) ^3.8.3
- [xe-utils](https://npm.io/package/xe-utils.md) ^2.6.5
- [vxe-table](https://npm.io/package/vxe-table.md) ^2.11.0
- [element-ui](https://npm.io/package/element-ui.md) ^2.15.6

## Recent versions

- 0.1.7 (latest) — 2022-06-07
- 0.1.6 — 2022-06-06
- 0.1.5 — 2022-06-06
- 0.1.4 — 2022-06-05
- 0.1.3 — 2022-06-05
- 0.1.2 — 2022-06-05
- 0.1.1 — 2022-06-05

## README

# custom-ui library of Vue2
---
## Dependencies 
* element-ui 
* vxe-table

# Installation

```
npm install -S custom-ui-lib
```
## Usage
```
import CustomUi from 'custom-ui-lib'
Vue.use(CustomUi)
```
## OR
* Example
```
import { CustomInput } from 'custom-ui-lib'
```

## components
####  CustomInput
```
<CustomInput type="number" v-model="value"/>
```

##### API
|  Property   | Type  | Description |
|  ----  | ----  |----  |
| type  | string: 'number' \| 'integer' \| 'float' | default:'number' |
| digits  | number | only for type:'float' |
| placeholder  | string |  |
| clearable  | boolean | default: false |
| maxlength  | number |  |
| disabled  | boolean | default: false |
| value / v-model  |  string / number | |
---

####  CustomSelect
```
<CustomSelect options="arr" v-model="value"/>
```

##### API
|  Property   | Type  | Description |
|  ----  | ----  |----  |
| options  |array: {value,label}[]|default: []  |
| value / v-model  | boolean / string / number | |
| placeholder  | string |  |
| clearable  | boolean | default: false |
| disabled  | boolean | default: false |
| filterable  | boolean | default: true 搜索 |

---
_Source: https://npm.io/package/custom-ui-lib · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
