更新记录
1.0.1(2025-01-16)
说明文档
1.0.0(2025-01-15)
初始版本
平台兼容性
uni-app x
Chrome | Safari | Android | iOS | 鸿蒙 | 微信小程序 |
---|---|---|---|---|---|
- | - | 5.0 | × | - | - |
piaoyi-getDeviceId
开发文档
UTS 语法 UTS API插件 UTS 组件插件 Hello UTS
使用说明
<template>
</template>
<script>
import { ref, onMounted } from 'vue';
import { getDeviceId } from '../../uni_modules/piaoyi-getDeviceId'
export default {
setup(props, context) {
onMounted(()=>{
console.log('getDeviceId', getDeviceId())
})
return {
}
}
}
</script>