Home

Awesome

<p align="center"> <a href="https://wuxui.com/"> <img width="200" src="./screenshots/logo.png"> </a> </p> <h1 align="center">Wux Weapp</h1> <div align="center"> <p>一套组件化、可复用、易扩展的微信小程序</p> <a href="https://github.com/wux-weapp/wux-weapp/" target="_blank"> <img alt="star this repo" src="https://img.shields.io/github/stars/wux-weapp/wux-weapp" /> </a> <a href="https://github.com/wux-weapp/wux-weapp/fork" target="_blank"> <img alt="fork this repo" src="https://img.shields.io/github/forks/wux-weapp/wux-weapp" /> </a> <a href="https://circleci.com/gh/wux-weapp/wux-weapp" target="_blank"> <img alt="circleci" src="https://img.shields.io/circleci/build/github/wux-weapp/wux-weapp/master.svg?label=circleci" /> </a> <a href="https://travis-ci.org/wux-weapp/wux-weapp" target="_blank"> <img alt="travis" src="https://img.shields.io/travis/wux-weapp/wux-weapp.svg?label=travis" /> </a> <a href="https://github.com/wux-weapp/wux-weapp/actions" target="_blank"> <img alt="github workflow" src="https://img.shields.io/github/actions/workflow/status/wux-weapp/wux-weapp/test.yml?branch=master&label=github workflow" /> </a> <br /> <a href="https://www.npmjs.com/package/wux-weapp" target="_blank"> <img alt="npm" src="https://img.shields.io/npm/v/wux-weapp.svg" /> </a> <a href="https://www.npmjs.com/package/wux-weapp" target="_blank"> <img alt="downloads" src="https://img.shields.io/npm/dm/wux-weapp.svg" /> </a> <a href="https://www.npmjs.com/package/wux-weapp" target="_blank"> <img alt="downloads" src="https://img.shields.io/npm/dt/wux-weapp.svg" /> </a> <a href="https://www.npmjs.com/package/wux-weapp" target="_blank"> <img alt="license" src="https://img.shields.io/npm/l/wux-weapp.svg" /> </a> <br /> <a href="https://github.com/wux-weapp/wux-weapp-sublime-snippets" target="_blank"> <img alt="Snippets for Sublime" src="https://img.shields.io/badge/Snippets%20for-Sublime-blue" /> </a> <a href="https://github.com/wux-weapp/wux-weapp-snippets" target="_blank"> <img alt="Snippets for VScode" src="https://img.shields.io/badge/Snippets%20for-VScode-blue" /> </a> <a href="https://github.com/wux-weapp/wux-weapp-atom-snippets" target="_blank"> <img alt="Snippets for Atom" src="https://img.shields.io/badge/Snippets%20for-Atom-blue" /> </a> </div>

快速上手

使用之前

在开始使用之前,你需要先阅读 微信小程序自定义组件 的相关文档。

如何安装

方式一. 通过 npm 安装

通过 npm 安装,需要依赖小程序基础库 2.2.1 以上版本,同时依赖开发者工具的 npm 构建,详见 npm 支持

# Using npm
npm i wux-weapp -S --production

# Using yarn
yarn add wux-weapp --production

方式二. 通过下载代码

通过 GitHub 下载 Wux Weapp 的代码,然后 将 packages/lib/ 目录拷贝到自己的项目中。

git clone https://github.com/wux-weapp/wux-weapp.git
cd wux-weapp

方法三. 选择需要的模块,量身定制

参考 量身定制

如何使用

按照如下的方式使用组件,以 Button 为例,其它组件在对应的文档页查看:

在 page.json 中引入组件

"usingComponents": {
    "wux-button": "../../dist/button/index"
}

在 page.wxml 中使用组件

<wux-button size="small">Button</wux-button>
<wux-button size="default">Button</wux-button>
<wux-button size="large">Button</wux-button>

组件库文件体积过大的问题

随着组件库越来越丰富,文件的体积也越来越大,某些时候我们可能只需要其中的一个或多个组件,如果直接引入整个组件库的话是不合适的,这时候就需要我们将要使用到组件给单独抽离出来。

  1. 使用 量身定制 功能自动抽离组件(官方推荐)。

  2. 手动抽离组件,也很简单直接拷贝 packages/ 目录下对应的组件即可,当然某些组件存在依赖关系,则抽离过程会相对复杂一些,以 ActionSheet、Badge、Button 为例。

demo/
  |-actionsheet/
  |-animation-group/
  |-backdrop/
  |-badge/
  |-button/
  |-helpers/
  |-index.js

预览

您可以扫描下方的小程序码体验或用 微信web开发者工具 打开 example 目录(请注意,是 example 目录,不是整个项目)。

logo

<img src="./screenshots/screenshorts-01.png" width="375" style="display: inline;">

相关链接

讨论组

您可以扫码添加下方的左侧『Wux 小助手』微信并备注『Wux Weapp』或者『加群』进交流群。 注意:如果添加『Wux 小猪手』没有反应,可以再尝试添加后边作者『Skyvow』微信。

<p> <img src="./screenshots/wxrobot-helper.png" width="256" style="display: inline;"> <img src="./screenshots/wechat.png" width="256" style="display: inline;"> </p>

赞助

请作者喝营养快线补补小身体(`・ω・´)

<p> <img src="./screenshots/alipay.jpg" width="256" height="350" style="display: inline;"> <img src="./screenshots/wxpay.jpg" width="256" height="350" style="display: inline;"> </p>

案例

<img src="./screenshots/cases.png" style="display: inline;">

贡献

有任何意见或建议都欢迎提 issue

License

MIT