更新记录
1.1.3(2025-04-25) 下载此版本
更新依赖包
1.1.1(2025-04-25) 下载此版本
更新依赖包
1.1.0(2024-11-29) 下载此版本
稳定性修复
查看更多平台兼容性
uni-app
Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | - | - | - | - | - |
微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
---|---|---|---|---|---|---|---|---|---|---|
- | - | - | - | - | - | - | - | - | - | - |
其他
多语言 | 暗黑模式 | 宽屏模式 |
---|---|---|
× | × | √ |
使用案例
<template>
<view class="page_info">
<IM-SSE ref="ReCord" @getRecord="getRecord"></IM-SSE>
<button @click="start">开始</button>
<button @click="end">结束</button>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods:{
start() {
this.$refs.ReCord.sendStart();
},
end() {
this.$refs.ReCord.sendEnd();
},
getRecord(blod) {
console.log(blod)
}
}
}
</script>