14 lines
366 B
Vue
14 lines
366 B
Vue
<template>
|
|
<div class="flex h-screen w-screen">
|
|
<MobileSidebar />
|
|
<div class="flex h-full flex-1 flex-col overflow-auto">
|
|
<MobileAppHeader />
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import MobileSidebar from '@/components/Mobile/MobileSidebar.vue'
|
|
import MobileAppHeader from '@/components/Mobile/MobileAppHeader.vue'
|
|
</script>
|