15 lines
243 B
Vue
15 lines
243 B
Vue
<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> |