mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 17:03:50 +01:00
17 lines
279 B
Vue
17 lines
279 B
Vue
<script setup lang="ts">
|
|
const isNavOpen = ref<boolean>(false);
|
|
|
|
useHead({
|
|
htmlAttrs: {
|
|
class: 'scroll-pt-20 lg:scroll-pt-4',
|
|
},
|
|
});
|
|
</script>
|
|
<template>
|
|
<div>
|
|
<div class="main-content">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|