1
0
Fork 0
activist/src/components/QRCode.vue

33 lines
524 B
Vue
Raw Normal View History

<script setup lang="ts">
2024-12-23 16:14:22 -05:00
import { defineProps } from 'vue';
import { renderSVG } from 'uqr';
const { content } = defineProps({
content: String,
});
const svg = renderSVG(content);
</script>
2024-11-16 23:04:02 -05:00
<template>
<div class="qr-code">
<!-- <span class="uuid">1337-9339</span>-->
2024-12-23 16:14:22 -05:00
<div :innerHTML="svg"></div>
2024-11-16 23:04:02 -05:00
</div>
</template>
<style scoped>
.qr-code {
aspect-ratio: 1 / 1;
2024-11-16 23:04:02 -05:00
background-color: white;
2024-12-23 16:14:22 -05:00
padding: 3px;
2024-11-16 23:04:02 -05:00
}
.uuid {
color: rgba(51, 51, 51, 0.91);
font-size: 90%;
font-family: monospace;
}
</style>