default.vue 224 Bytes
Newer Older
zhangsan's avatar
1  
zhangsan committed
1 2 3 4 5 6 7 8 9 10 11
<template>
  <main class="flex flex-col min-h-svh">
    <div style="margin-bottom: 50px;">
      <slot />
    </div>
    <tabbar />
  </main>
</template>
<script setup>
import tabbar from '@/components/tabbar.vue'
</script>