2024-11-17 11:41:35 -05:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import QRCodeImage from './QRCodeImage.vue';
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-11-16 23:04:02 -05:00
|
|
|
<template>
|
|
|
|
|
<div class="qr-code">
|
2024-11-17 11:41:35 -05:00
|
|
|
<QRCodeImage class="qr-code-image" />
|
|
|
|
|
<!-- <span class="uuid">1337-9339</span>-->
|
2024-11-16 23:04:02 -05:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.qr-code {
|
2024-11-17 11:41:35 -05:00
|
|
|
aspect-ratio: 1 / 1;
|
2024-11-16 23:04:02 -05:00
|
|
|
background-color: white;
|
|
|
|
|
}
|
|
|
|
|
.uuid {
|
|
|
|
|
color: rgba(51, 51, 51, 0.91);
|
|
|
|
|
font-size: 90%;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
}
|
|
|
|
|
</style>
|