All Projects → wepyjs → Wepy Com Toast

wepyjs / Wepy Com Toast

微信小程序toast组件

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Wepy Com Toast

Wepy Demo Bookmall
Demo codes for 🐼📖 which used in a very early version.
Stars: ✭ 278 (+167.31%)
Mutual labels:  wepy
Weapp.socket.io
A WebSocket client for building WeChat Mini Program implement by socket.io
Stars: ✭ 517 (+397.12%)
Mutual labels:  wepy
Wepy Calendar
微信小程序/wepy/日历组件
Stars: ✭ 58 (-44.23%)
Mutual labels:  wepy
Jiezhang
基于 wepy 开发的一款纯记账的微信小程序
Stars: ✭ 307 (+195.19%)
Mutual labels:  wepy
Wepy
小程序组件化开发框架
Stars: ✭ 21,648 (+20715.38%)
Mutual labels:  wepy
Jeewx Boot
JAVA版免费开源的微信管家平台。支持微信公众号、小程序、第三方平台等。平台已经实现了公众号基础管理、群发、系统权限、抽奖活动、小程序官网等功能,便于二次开发,可以快速搭建微信应用!
Stars: ✭ 789 (+658.65%)
Mutual labels:  wepy
we-city-select
微信小程序,城市选择组件(基于wepy)
Stars: ✭ 36 (-65.38%)
Mutual labels:  wepy
Supermarketmini
基于wepy2.x 仿苏宁小店小程序,API采用go开发(已开源),项目正在开发中,欢迎加群:160301726
Stars: ✭ 73 (-29.81%)
Mutual labels:  wepy
Wepy Wechat Demo
wepy仿微信聊天界面
Stars: ✭ 503 (+383.65%)
Mutual labels:  wepy
Wepy Swipe Delete
微信小程序框架wepy - 滑动删除插件
Stars: ✭ 30 (-71.15%)
Mutual labels:  wepy
Mp Jishengji
一款日常生活记录类的小程序,通过wepyjs构建,包含计划、账本、圈子、榜单和个人中心等模块。
Stars: ✭ 312 (+200%)
Mutual labels:  wepy
Wepy Weui Demo
WeUI 在 WePY 中的使用示例,同一份代码可以运行在小程序上和Web上
Stars: ✭ 390 (+275%)
Mutual labels:  wepy
Image Cropper
💯一款功能强大的微信小程序图片裁剪插件
Stars: ✭ 893 (+758.65%)
Mutual labels:  wepy
Wepy Mall
微信小程序--基于wepy 商城(微店)微信小程序 欢迎学习交流
Stars: ✭ 3,224 (+3000%)
Mutual labels:  wepy
Community
基于Node.js+MySQL开发的功能齐全,强大,美观的社区微信小程序(已支持云开发)
Stars: ✭ 69 (-33.65%)
Mutual labels:  wepy
Szushudong
微信小程序 - 深大的树洞 2.0 - 基于 WePY
Stars: ✭ 270 (+159.62%)
Mutual labels:  wepy
Leshare Seller Wepy
基于小程序的店铺商家管理端,采用wepy框架开发
Stars: ✭ 687 (+560.58%)
Mutual labels:  wepy
Weapp Qrcode
weapp.qrcode.js 在 微信小程序 中,快速生成二维码
Stars: ✭ 1,194 (+1048.08%)
Mutual labels:  wepy
Nfu Guide Map
📍 地图导览小程序 — 南苑导览 🚶 仅需修改配置即可适配任意场景的个性化定制地图小程序
Stars: ✭ 72 (-30.77%)
Mutual labels:  wepy
Leshare Shop Wepy
基于微信小程序的在线商城,采用wepy框架开发
Stars: ✭ 839 (+706.73%)
Mutual labels:  wepy

微信小程序 wepyjs 第三方toast组件

toast

说明

官方toast组件只支持显示successloading两种icon,因此需要一个更加个性化的toast组件。 此组件依赖于wepyjs v1.1.9+,如果没有使用wepyjs,则可以使用原版toast组件

使用

安装组件

npm install wepy-com-toast --save

引入组件

// index.wpy
<template>
    <component id="toast"></component>
</template>
<script>
    import wepy from 'wepy';
    import Toast from 'wepy-com-toast';

    export default class Index extends wepy.page {
        components = {
            toast: Toast
        };
    }
</script>

调用方法

let promise = this.$invoke('toast', 'show', {
    title: '自定义标题',
    img: 'https://raw.githubusercontent.com/kiinlam/wetoast/master/images/star.png',
});

promise.then((d) => {
    console.log('toast done');
});

更多说明

参考原版插件

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