mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 08:29:57 +00:00
23 lines
509 B
Vue
23 lines
509 B
Vue
<template>
|
|
<div h-full of-hidden>
|
|
<main grid="~ lg:cols-[1fr_40rem_1fr]" max-w-70rem mxa h-full>
|
|
<div>
|
|
<slot name="left">
|
|
<AccountMe />
|
|
</slot>
|
|
</div>
|
|
<div h-full of-auto border="l r border">
|
|
<slot />
|
|
</div>
|
|
<div flex="~ col">
|
|
<slot name="right">
|
|
<NavTitle p5 />
|
|
<NavSide border="y border" py8 />
|
|
<div flex-auto />
|
|
<NavFooter />
|
|
</slot>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</template>
|