更新记录
1.0.0(2025-02-13) 下载此版本
1.0.0
平台兼容性
uni-app x
Chrome | Safari | Android | iOS | 鸿蒙 | 微信小程序 |
---|---|---|---|---|---|
- | - | × | × | √ | × |
使用方式
<template>
<button @click="send">发送短信</button>
</template>
<script setup>
// #ifdef APP-HARMONY
// 仅鸿蒙会编译
import { sendSms } from '@/uni_modules/speed-sms';
// #endif
const send = () => {
// #ifdef APP-HARMONY
// 仅鸿蒙会编译
// 第一个参数,发送短信的号码,必填
// 第二个参数,发送的内容,可选
sendSms('10086','短信内容');
// #endif
}
</script>