diff --git a/README.md b/README.md index 00adfecc..377e3248 100644 --- a/README.md +++ b/README.md @@ -44,114 +44,58 @@ npm run dev 详细使用文档,请参考 [快速上手](https://www.youzanyun.com/zanui/weapp) ### 组件分类介绍 -根据功能的不同,可以将组件大致的分为4类: +根据功能的不同,可以将组件大致的分为2类: -#### 1. 简单组件 +#### 1. 正常引用 -如按钮组件,只要按照wxml结构写就好了 - -~~~html +如按钮组件,只需要在页面中引入按钮自定义组件即可 +```json +{ + "usingComponents": { + "zan-button": "/path/to/zanui-weapp/dist/btn/index" + } +} +``` +```html -按钮 -~~~ +按钮 +``` ![](https://img.yzcdn.cn/public_files/2017/02/08/1b1e39ed3dc6b63519a68ba1e2650cfc.png) -#### 2. 复杂组件 -如加载更多组件,需要先引入定义好的模版,然后给模版传递数据 +#### 2. API类组件 -~~~html - +如 Toast 组件,需要先在页面上引入自定义组件。之后在逻辑运行时,直接调用方法即可展示 +```json +{ + "usingComponents": { + "zan-toast": "/path/to/zanui-weapp/dist/toast/index" + } +} +``` +```html + +``` - - +将对应的 Toast 的函数引入页面,就可以直接调用来展示 Toast 了 - -