• zhangsan's avatar
    1 · cc058e1b
    zhangsan authored
    cc058e1b
default.vue 224 Bytes
<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>