mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
13 lines
208 B
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>
|