Fix QR code not displaying

This commit is contained in:
silverpill 2022-11-19 21:47:14 +00:00
parent 0d5429f48f
commit 9d99d78084

View file

@ -23,3 +23,9 @@ onMounted(async () => {
qrSvg = await QRCode.toString(props.url, { type: "svg" })
})
</script>
<style scoped lang="scss">
:deep(svg) {
width: 100%;
}
</style>