9 lines
176 B
Vue
9 lines
176 B
Vue
|
<template>
|
||
|
<div
|
||
|
class="relative h-screen overflow-y-auto font-body text-black dark:text-white">
|
||
|
<slot></slot>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts"></script>
|