- Button 组件
-
Dialog 组件[2018-06-21] -
Message 组件[2018-06-12] -
Input 组件[2018-06-13] -
Toast 组件[2018-06-14] -
Swiper 组件[2018-06-16] -
List 组件[2018-06-20] -
Select 组件[2018-06-21] -
Card 组件[2018-06-22] -
Icon 组件_[2018-06-22] -
Tab 组件_[2018-06-25] -
Notification 组件_[2018-08-10] -
VerificationCode 组件_[2018-08-24]
- 基于
wepy
框架 - 使用
scss
预处理语言
- 全局安装 wepy 编译脚本
// 自己选择包的地址源
npm i wepy-cli -g
- app.wpy 引入组件公共样式
@import '../node_modules/wepy-ui-ydj/src/styles/all';
// 直接引入组件内部库
import Button from 'wepy-ui-ydj/Button';
// 按照wepy文档分配组件别名
components = {
buttonDefault: Button,
buttonPlain: Button
};
<template>
<buttonDefault>默认</buttonDefault>
<buttonPlain shape="plain">中空默认</buttonPlain>
</template>;
- utils 文件夹 等其它 js 资源在被 wepb-cli 追踪依赖时不会被 babel 编译,所以需要我们自己预先编译
npm run babel