14 lines
305 B
Vue
14 lines
305 B
Vue
<script setup>
|
|
import Wip from "@/components/quick/Wip.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<main class="items-center flex flex-col">
|
|
<div
|
|
class="a4page-portrait items-center bdr-1 flex flex-col relative overflow-scroll"
|
|
>
|
|
<Wip />
|
|
</div>
|
|
</main>
|
|
</template>
|