default.vue 224 Bytes EditWeb IDE 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>