更新记录
1.0.1(2023-07-23)
下载此版本
增加使用说明
1.0.0(2023-05-19)
下载此版本
功能实装
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.7.7 app-vue app-nvue |
√ |
√ |
√ |
√ |
√ |
√ |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
鸿蒙元服务 |
√ |
√ |
√ |
√ |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
使用说明
下列是一个 vue3 代码段使用组件示范
<template>
<view class="content">
<button @click="isclick" style="width:300rpx;height: 100rpx;top:300rpx;align-items: center;display: flex;justify-content: center;">点我</button>
<Messagebox ref="messagebox"></Messagebox>
</view>
</template>
<script setup>
import Messagebox from '../../uni_modules/Message-alterblock/components/Message-alterblock/Message-alterblock.vue'
import {ref} from 'vue'
const messagebox=ref(null)
function isclick(){
messagebox.value.alter_appear("success","点的很好")
}
</script>