lis8.0-vue3/src/views/index.vue
2025-10-13 17:28:33 +08:00

24 lines
364 B
Vue

<template>
<div>
</div>
</template>
<script setup>
import { useFingerprint } from '@/utils/useFingerprint';
// 使用自定义hook获取指纹信息
const {
fingerprint,
loading,
error,
getFingerprint
} = useFingerprint();
// 重新获取指纹
const refreshFingerprint = async () => {
await getFingerprint();
};
</script>
<style scoped></style>