starwait/layouts/start.vue
2025-04-25 18:02:03 +08:00

18 lines
235 B
Vue

<script setup lang="ts">
</script>
<template>
<div class="startLayout">
<slot />
</div>
</template>
<style scoped>
.startLayout{
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
}
</style>