elk/layouts/default.vue

23 lines
495 B
Vue
Raw Normal View History

2022-11-13 05:34:43 +00:00
<template>
2022-11-14 14:54:30 +00:00
<div h-full of-hidden>
2022-11-15 17:14:10 +00:00
<main grid="~ lg:cols-[1fr_40rem_18rem]" h-full>
2022-11-14 14:54:30 +00:00
<div>
<slot name="left">
<NavTitle p4 />
</slot>
2022-11-14 14:54:30 +00:00
</div>
<div h-full of-auto border="l r border">
<slot />
</div>
2022-11-15 17:14:10 +00:00
<div flex="~ col">
2022-11-15 15:48:23 +00:00
<slot name="right">
<AccountMe />
2022-11-15 17:14:10 +00:00
<NavSide border="y border" py8 />
<div flex-auto />
<NavFooter />
2022-11-15 15:48:23 +00:00
</slot>
</div>
2022-11-14 14:54:30 +00:00
</main>
</div>
2022-11-13 05:34:43 +00:00
</template>