介绍
小程序组件库,仅适用微信小程序。若有疑问请提交到Issues中。
快速配置
在之前你应该阅读微信自定义组件文档。根目录执行:
$ pm install wxapp-el-ui
# 或
$ git clone https://github.com/cabbagelol/wxapp-el-ui.git (建议)
将component
与style
文件夹拷贝到自己的项目中(请注意控件的依赖,详情查看控件“依赖”栏目),依照下方教程方式使用组件。
1.在app.json或当前page.json文件中配置usingComponents
参数。所有控件的配置单你可以通过此传送门,查阅usingComponents字段内容。
"usingComponents": {
"el-head": "component/_head/head"
}
2.在wxml中使用组件:
<el-head head=""></el-head>