Awesome
wepy2-com-toast
一个 toast 消息框组件。
此组件依赖 wepy 2.0.0+。
如果你正在使用 wepy 1.x,请移步 wepy-com-toast。
用法
安装:
npm install @skit/wepy2-com-toast --save
导入:
<template>
<ui-toast ref="ui-toast" />
</template>
<config>
{
usingComponents: {
'ui-toast': 'module:@skit/wepy2-com-toast'
}
}
</config>
<script>
import Wepy from 'wepy';
Wepy.page({
onShow() {
this.$refs['ui-toast'].show('hello world');
}
});
</script>
注意:当前版本的 wepy-cli 存在 Bug,无法打包通过
node_modules
引入的 wpy 组件,解决方案请参考 Issue#2554。
可配置项
属性:
无
方法:
/**
* 显示消息对话框。
* @param {Object} options 配置项。
* @param {String} options.content 提示文本。
* @param {String} options.position 对话框出现在屏幕的位置,支持“top”、“center”、“bottom”,默认值为“bottom”。
* @param {String} options.duration 指定对话框若干毫秒后自动消失,默认值为“2000”。
*/
this.$refs['ui-toast'].show({
content: '这是一条消息',
position: 'center',
duration: 3000
});
/**
* 显示消息对话框。
* @param {String} content 消息文本。
*/
this.$refs['ui-toast'].show('这是一条消息');
/**
* 隐藏消息对话框。
*/
this.$refs['ui-toast'].hide();