# 后台业务组件集合

## 安装
```shell
npm install kc-aui --save
```

## 使用
```js
// register the plugin on vue
// first of all, you should add the components library of element-ui, because of the plugin baseed on this library
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElementUI)

import kcAui from 'kc-aui'
// Use all
Vue.use(kcAui)

// Use one of kc-aui
Vue.use(kcAui.List)
```

### 1.List

> List是基于element-ui组件的二次封装（表格、分页、标签等），减少了代码代码冗余量，使用户更加着重于业务开发

具体使用方式请查看文件注释

### 2.Search

> Search是基于element-ui组件的二次封装（提供各种类型值的筛选功能），减少了代码代码冗余量，使用户更加着重于业务开发

具体使用方式请查看文件注释
