UContainer added

This commit is contained in:
2025-12-08 18:29:10 +00:00
parent 0d7f09b807
commit 7e199c1ce2

15
app/layouts/default.vue Normal file
View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
</script>
<template>
<!-- the whole content must be in a UContainer -->
<!-- overflow auto allows scroll -->
<UContainer class="overflow-auto">
<slot />
</UContainer>
</template>
<style scoped>
</style>