crm/frontend/src/components/LayoutHeader.vue
2023-08-23 22:22:24 +05:30

13 lines
366 B
Vue

<template>
<Teleport to="#header-area">
<header class="flex justify-between items-center px-5 py-3">
<div class="flex items-center gap-2">
<slot name="left-header" />
</div>
<div class="flex items-center gap-2">
<slot name="right-header" class="flex items-center gap-2" />
</div>
</header>
</Teleport>
</template>