1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 22:38:11 +09:00
elk/layouts/default.vue

20 lines
384 B
Vue
Raw Normal View History

2022-11-13 14:34:43 +09:00
<template>
2022-11-14 23:54:30 +09: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 23:54:30 +09:00
</div>
<div h-full of-auto border="l r border">
<slot />
</div>
<div>
2022-11-16 00:48:23 +09:00
<slot name="right">
<AccountMe />
</slot>
</div>
2022-11-14 23:54:30 +09:00
</main>
</div>
2022-11-13 14:34:43 +09:00
</template>