1
0
mirror of https://github.com/elk-zone/elk synced 2025-01-06 09:52:49 +09:00
elk/components/main/MainContent.vue

18 lines
325 B
Vue
Raw Normal View History

<template>
<div relative>
<div sticky top-0 bg="#222" z10>
<div flex justify-between>
<div p3 flex gap-1>
<slot name="title" />
</div>
<div p3 flex>
<slot name="actions" />
</div>
</div>
</div>
<div>
<slot />
</div>
</div>
</template>