16 lines
355 B
Vue
16 lines
355 B
Vue
<script lang="ts" setup>
|
|
import TextEditor from '~/components/viewers/TextEditor.vue';
|
|
import ImageViewer from '@/components/viewers/ImageViewer.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<main class="flex h-full w-full items-center justify-center">
|
|
<SelectionRect />
|
|
|
|
<TextEditor />
|
|
<ImageViewer />
|
|
|
|
<slot />
|
|
</main>
|
|
</template>
|