# yun-ui

## 安装

```
npm install lyzh-yun-ui
```

## 快速上手

1. `App.vue`引入主题

```css
/* App.vue */
<style >
@import 'lyzh-yun-ui/src/components/yui-theme/yui-theme.css';
</style>
```

2. `pages.json`配置 easycom 规则(按需引入)

```js
// pages.json
{
    "easycom": {
        "autoscan": true,
        "custom": {
        "yui-(.*)": "lyzh-yun-ui/src/components/yui-$1/yui-$1.vue"
        }
    },
	// 此为本身已有的内容
	"pages": [
		// ......
	]
}
```
