Skip to content

device

NPM version

Platform Support

Platform Support

Platform Support

Platform Support

介绍:

设备信息插件

Method

getUUID

获取设备唯一标识 UUID

删除应用不会改变。

ts
import { 
devicePlugin
} from "@plaoc/plugins";
await
devicePlugin
.
getUUID
();

Usage Plugins

vue
<script setup lang="ts">
import { 
devicePlugin
} from "@plaoc/plugins";
async function
getUUID
() {
const {
uuid
} = await
devicePlugin
.
getUUID
();
} </script>

Usage WebComponent

vue
<script setup lang="ts">
import { 
onMounted
,
ref
} from "vue";
import {
HTMLDeviceElement
} from "@plaoc/plugins";
const
$devicePlugin
=
ref
<
HTMLDeviceElement
>();
let
config
:
HTMLDeviceElement
;
onMounted
(async () => {
config
=
$devicePlugin
.
value
!;
}); async function
getUUID
() {
const {
uuid
} = await
config
.
getUUID
();
} </script> <template> <
dweb-device
ref
="
$devicePlugin
"></
dweb-device
>
</template>

基于 MIT 许可发布