16 lines
324 B
Vue
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
<script setup lang="ts">
import { useDrawings } from '../composables/useDrawings'
defineProps<{ page: number }>()
const { drawingState } = useDrawings()
</script>
<template>
<svg
v-if="drawingState[page]"
class="w-full h-full absolute top-0 pointer-events-none"
v-html="drawingState[page]"
/>
</template>