@mnui/msg
v1.0.7
Published
Msg 提示页
Downloads
3
Readme
Msg 提示页
说明
基于微信小程序第三方框架wepyjs开发,使用需要先安装wepyjs
使用
安装组件
npm install @mnui/msg --save
引入组件
// index.wpy
<template>
<msg props="{{props}}"></msg>
</template>
<script>
import wepy from 'wepy'
import msg from '@mnui/msg'
export default class Index extends wepy.page {
components = {
msg
}
}
</script>
props参数
iconObj[Object]
icon样式,默认为{ type: 'success', size: '100', color: '' }
text[Stirng]
说明文字
btnObj[Object]
按钮样式,默认为{ show: true, text: '完成', style: '', callback: null }