homemanager-fe/src/components/PageHead.vue

17 lines
260 B
Vue
Raw Normal View History

2023-01-24 19:04:01 +00:00
<template>
<div
:class="[
'mb-2 flex items-center justify-between pb-2',
bordered ? 'border-b-2 border-gray-100' : '',
]"
2023-01-24 19:04:01 +00:00
>
<slot />
</div>
</template>
<script setup lang="ts">
defineProps<{
bordered?: boolean;
2023-01-24 19:04:01 +00:00
}>();
</script>