All Projects → TaleLin → Lin Ui

TaleLin / Lin Ui

Licence: mit
🌈 简洁、易用、灵活的微信小程序组件库

Programming Languages

javascript
184084 projects - #8 most used programming language
Less
1899 projects

Projects that are alternatives of or similar to Lin Ui

miniprogram
[微信小程序/小游戏] A fast wechat miniprogram/minigame development sdk written in Golang
Stars: ✭ 52 (-98.41%)
Mutual labels:  weixin, miniprogram
comic-wx
微信小程序,仿腾讯动漫,界面美观,具备常用功能。WeiXin mini program,imitating TenCent comic, is very beautiful. I think, you would like it
Stars: ✭ 60 (-98.16%)
Mutual labels:  weixin, miniprogram
Wechat
WeChat SDK for Go (微信SDK:简单、易用)
Stars: ✭ 3,144 (-3.68%)
Mutual labels:  wechat, weixin
Wechatplugin Macos
No description or website provided.
Stars: ✭ 13,280 (+306.86%)
Mutual labels:  wechat, weixin
lin-ui-doc
🔖 Lin UI 文档
Stars: ✭ 20 (-99.39%)
Mutual labels:  linui, lin-ui
Sactive Bot
😈 An extensible chat bot framework. sactive-bot is an evolution of the open source hubot project. - https://www.shipengqi.top/sactive-bot .
Stars: ✭ 212 (-93.5%)
Mutual labels:  wechat, weixin
Pinche xcx data
同城拼车微信小程序后端代码
Stars: ✭ 244 (-92.52%)
Mutual labels:  wechat, weixin
Wxpy
微信机器人 / 可能是最优雅的微信个人号 API ✨✨
Stars: ✭ 13,057 (+300.03%)
Mutual labels:  wechat, weixin
Wechatkit
一款快速实现微信第三方登录的框架(Swift版) SDK 1.8.5
Stars: ✭ 249 (-92.37%)
Mutual labels:  wechat, weixin
Think Wechat
easywechat for thinkphp support
Stars: ✭ 250 (-92.34%)
Mutual labels:  wechat, weixin
Weixin Popular
微信SDK JAVA (公众平台、开放平台、 商户平台、 服务商平台)
Stars: ✭ 2,384 (-26.96%)
Mutual labels:  wechat, weixin
miniprogram
微信小程序过审指南
Stars: ✭ 96 (-97.06%)
Mutual labels:  weixin, miniprogram
Wepush
专注批量推送的小而美的工具,目前支持:模板消息-公众号、模板消息-小程序、微信客服消息、微信企业号/企业微信消息、阿里云短信、阿里大于模板短信 、腾讯云短信、云片网短信、E-Mail、HTTP请求、钉钉、华为云短信、百度云短信、又拍云短信、七牛云短信
Stars: ✭ 2,597 (-20.44%)
Mutual labels:  wechat, weixin
Wechat Jump Game
😊 Nodejs 微信《跳一跳》辅助
Stars: ✭ 216 (-93.38%)
Mutual labels:  wechat, weixin
Wechat
weixin/wechat/微信公众平台/微信企业号/微信商户平台/微信支付 go/golang sdk
Stars: ✭ 2,330 (-28.62%)
Mutual labels:  wechat, weixin
Weapp Workflow
基于Gulp 的微信小程序前端开发工作流 💯
Stars: ✭ 241 (-92.62%)
Mutual labels:  wechat, weixin
Go Workwx
a sensible Work Weixin(企业微信, Wechat Work) SDK for Go
Stars: ✭ 181 (-94.45%)
Mutual labels:  wechat, weixin
Wxapp Webpack Plugin
📦 微信小程序 webpack 插件
Stars: ✭ 185 (-94.33%)
Mutual labels:  wechat, weixin
Sdk3rd
第三方SDK集成库,授权/分享/支付
Stars: ✭ 249 (-92.37%)
Mutual labels:  wechat, weixin
openapplus
专为小程序共享而生的小程序容器
Stars: ✭ 51 (-98.44%)
Mutual labels:  weixin, miniprogram

Lin UI, not just an UI component library!
一套基于微信小程序原生语法实现的高质量 UI 组件库

目录

简介

Lin UI 是一套基于 微信小程序原生语法 实现的高质量 UI 组件库。遵循简洁、易用、美观的设计规范。

快速上手

务必勾选增强编译Es6 转 ES5以及使用 npm 模块选项参考图片

安装

  1. 初始化你的项目为一个 NPM 项目

    npm init -y
    

    若项目根目录已包含 package.json 文件,则可跳过该步骤

  2. 安装 Lin UI

    npm i lin-ui
    
  3. 配置微信开发者工具 要正确安装 Lin UI,需将微信开发者工具的如下三个选项全部勾选上参考图片

    • 使用 npm 模块
    • 增强编译
    • ES6 转 ES5

    设置路径:微信开发者工具右上角 -> 详情 -> 本地设置

  4. 构建 NPM 模块 微信开发者工具配置完成以后,还需进行一次 NPM 模块的构建

    按钮位置:微信开发者工具顶部 -> 工具 -> 构建 npm

若你本地没有 Node.js 环境,无法使用 NPM 安装,则可以采用源码方式安装

引入

  1. 配置微信开发者工具

    • 要正确使用 Lin UI,需将微信开发者工具的 Es6 转 ES5增强编译 选项勾选上

      设置路径:微信开发者工具右上角 -> 详情 -> 本地设置

    • 将基础库版本设置到 >=2.8.2

  2. 在页面中引入

    {
      "usingComponents":{
        "l-button":"/miniprogram_npm/lin-ui/button/index"
      }
    }
  3. 在页面中使用

     <l-button type="default">默认按钮</l-button>

    我们建议你在引入 Lin UI 组件时,都统一命名为 l-{组件名} 格式,遵循此规范将使你的项目代码更加清晰

    至此,Lin UI 已成功引入至你的项目中了!

讨论交流

贡献代码

我们的代码基于 develop 分支开发,欢迎提交 Pull Request 进行代码贡献。

在提交 Pull Request 之前,请详细阅读我们的开发规范,否则可能因为 Commit 信息不规范等原因被关闭 Pull Request。

开源协议

MIT © 2020 林间有风

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].