mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
a17d3276d3
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
14 lines
243 B
Vue
14 lines
243 B
Vue
<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>
|