elk/layouts/default.vue

20 lines
384 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>
<main grid="~ lg:cols-[1fr_40rem_1fr]" h-full>
<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>
<div>
2022-11-15 15:48:23 +00:00
<slot name="right">
<AccountMe />
</slot>
</div>
2022-11-14 14:54:30 +00:00
</main>
</div>
2022-11-13 05:34:43 +00:00
</template>