1
0
mirror of https://github.com/amir20/dozzle.git synced 2026-01-02 02:57:27 +01:00
Files
dozzle/assets/components/PageWithLinks.vue

13 lines
208 B
Vue

<template>
<div class="flex flex-col gap-8 px-4 py-4 md:px-8">
<section>
<Links />
</section>
<slot></slot>
</div>
</template>
<script setup lang="ts"></script>
<style scoped></style>