All Projects → phonycode → Wuss Weapp

phonycode / Wuss Weapp

Licence: mit
🐳wuss-weapp 一款高质量,组件齐全,高自定义的微信小程序UI组件库

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Wuss Weapp

Wemark
微信小程序Markdown渲染库
Stars: ✭ 1,159 (+242.9%)
Mutual labels:  wxml, wechat, weixin, weapp, wxss
Tina
💃 一款轻巧的渐进式微信小程序框架
Stars: ✭ 1,153 (+241.12%)
Mutual labels:  wxml, wechat, weixin, weapp, wxss
Iview Weapp
一套高质量的微信小程序 UI 组件库
Stars: ✭ 6,145 (+1718.05%)
Mutual labels:  wechat, weixin, weapp, components
Mina Webpack
🍱 Mina single-file-component meets Webpack
Stars: ✭ 77 (-77.22%)
Mutual labels:  wxml, wechat, weixin, wxss
Weapp
🐧 微信小程序组件和功能封装,基于微信Component自定义组件开发
Stars: ✭ 235 (-30.47%)
Mutual labels:  wxml, wechat, weapp, wxss
Xiaochengxu demos
小程序优秀项目源码汇总,每个项目都有图有源码,零基础学微信小程序,小程序表格,小程序视频,小程序视频弹幕,小程序仿天猫大转盘抽奖等源码,小程序云开发,小程序发邮件,小程序支付,微信支付,持续更新。。。
Stars: ✭ 855 (+152.96%)
Mutual labels:  wechat, weixin, weapp
Wxapp Webpack Plugin
📦 微信小程序 webpack 插件
Stars: ✭ 185 (-45.27%)
Mutual labels:  wechat, weixin, weapp
Weapp Workflow
基于Gulp 的微信小程序前端开发工作流 💯
Stars: ✭ 241 (-28.7%)
Mutual labels:  wechat, weixin, weapp
Wechat Weapp Movie
🎬电影推荐 - 微信小程序
Stars: ✭ 1,355 (+300.89%)
Mutual labels:  wechat, weixin, weapp
Autocomplete Wx
一款atom插件,支持微信语法高亮和代码补全
Stars: ✭ 47 (-86.09%)
Mutual labels:  wxml, weixin, wxss
Weapp Demo Breadtrip
基于面包旅行 API 制作的微信小程序示例
Stars: ✭ 282 (-16.57%)
Mutual labels:  wechat, weixin, weapp
Wxmlify
一个轻量快速的插件,帮助你在微信小程序中显示富文本编辑器生成的HTML。
Stars: ✭ 93 (-72.49%)
Mutual labels:  wxml, wechat, weapp
Hswiper Wx
微信小程序swiper插件
Stars: ✭ 167 (-50.59%)
Mutual labels:  wxml, wechat, wxss
Wxappunpacker
wxml被“编译“后”压缩“一下多好!😀
Stars: ✭ 4,487 (+1227.51%)
Mutual labels:  wxml, wechat, wxss
Wxapp Redux Starter
微信小程序,集成redux,并且提供了方便快捷的开发环境;内置好奇心日报Demo...
Stars: ✭ 205 (-39.35%)
Mutual labels:  wxml, weixin, wxss
Oncelove
婚礼请柬小程序
Stars: ✭ 209 (-38.17%)
Mutual labels:  wxml, wechat, wxss
wepy-com-calendar
一个基于wepy的日历组件,内置多套皮肤,可启用打卡功能
Stars: ✭ 33 (-90.24%)
Mutual labels:  calendar, weapp
xing-weapp-editor
开箱即用的微信小程序图文编辑组件
Stars: ✭ 101 (-70.12%)
Mutual labels:  weixin, weapp
Vux
Mobile UI Components based on Vue & WeUI
Stars: ✭ 17,573 (+5099.11%)
Mutual labels:  wechat, components
Lin Ui
🌈 简洁、易用、灵活的微信小程序组件库
Stars: ✭ 3,264 (+865.68%)
Mutual labels:  wechat, weixin

logo

Wuss Weapp

一款高质量,组件齐全,高自定义的微信小程序 UI 组件库

文档

https://phonycode.github.io/wuss-weapp

Wuss Weapp 官方交流群

QQ 群号 787275772

扫码体验

使用微信扫一扫体验小程序组件示例

演示图片

快速上手

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

如何使用

方法一 [推荐] (通过npm安装依赖并在小程序构建npm模块)

  1. 通过使用shell命令或git定位到当前小程序开发目录,然后使用npm或者yarn安装依赖。
npm init && npm install --production wuss-weapp

或者

yarn init && yarn add --production wuss-weapp
  1. 当依赖安装完成后即可在微信小程序开发者工具里点击 [工具] => [构建npm],此时若出现弹窗则记得吧 “使用npm模块” 勾上,若无弹窗则待构建完成后在详情里面手动勾上 “使用npm模块”。

  2. 构建完成后即可添加需要的组件。在页面的 json 中配置:

"usingComponents": {
  "w-button": "wuss-weapp/w-button/index",
  "w-toast": "wuss-weapp/w-toast/index",
  "w-alert": "wuss-weapp/w-alert/index"
}
  1. 在 wxml 中使用组件:
<w-button type="info" bind:onClick="buttonClick">这是一个按钮</w-button>
<w-toast id="wuss-toast" />
<w-alert id="wuss-alert" />
  1. 在JavaScript中使用:
import { Alert, Toast } from 'wuss-weapp';

Alert({
  title: '提示',
  content: 'wuss weapp is good',
});

Toast.show({
  message: 'wuss小程序UI库',
});

方法二(通过clone当前项目的dist拷贝到自己项目中使用)

  1. GitHub 下载 Wuss Weapp 的代码,将 dist 目录拷贝到自己的项目中。然后按照如下的方式使用组件,以 Button 为例,其它组件在对应的文档页查看:

  2. 添加需要的组件。在页面的 json 中配置(路径根据自己项目位置配置):

"usingComponents": {
  "w-button": "/dist/w-button/index"
}
  1. 在 wxml 中使用组件:
<w-button type="info" bind:onClick="buttonClick">这是一个按钮</w-button>

预览所有组件

我们内置了所有组件的示例,您可以扫描上方的的小程序码体验,或按以下方式在微信开发者工具中查看:

git clone https://github.com/phonycode/wuss-weapp.git

然后,直接将项目在微信开发者工具中打开即可。

贡献

有任何意见或建议都欢迎提 issue,提 issue 之前请先阅读是否已经有相关 issue 或者如果有相关但是已经关闭 issue 只是还未更新的版本,请不要在此 issue 下方回复,如果更新版本后依然存在 请提新出的 issue,感谢

LICENSE

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].