elk/layouts/default.vue
patak a17d3276d3
feat: /public/local timeline and timeline header (#3)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2022-11-15 21:50:41 +08:00

18 lines
346 B
Vue

<template>
<div h-full of-hidden>
<main grid="~ lg:cols-[1fr_40rem_1fr]" h-full>
<div>
<slot name="left">
<NavTitle p4 />
</slot>
</div>
<div h-full of-auto border="l r border">
<slot />
</div>
<div>
<slot name="right" />
</div>
</main>
</div>
</template>