20 lines
295 B
Vue
20 lines
295 B
Vue
<template>
|
|
<div class="header">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.header {
|
|
border-bottom: 1px solid #c1c1c1;
|
|
padding: 0.75rem 1rem;
|
|
background-color: #efefef;
|
|
}
|
|
.header, .header * {
|
|
font-weight: 600;
|
|
}
|
|
</style> |