elk/components/main/MainContent.vue

14 lines
243 B
Vue
Raw Normal View History

<template>
<div flex flex-col>
<div flex justify-between>
<div p3 flex gap-1>
<slot name="title" />
</div>
<div p3 flex>
<slot name="actions" />
</div>
</div>
<slot />
</div>
</template>