SectionTitle.vue 272 Bytes
Newer Older
abergavenny's avatar
abergavenny committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script setup>
defineProps(['value'])
</script>

<template>
  <div class="section-title">
    <span>{{ value }}</span>
  </div>
</template>

<style scoped>
.section-title {
  display: flex;
  flex-direction: column;
}

.section-title>span {
  font-weight: bold;
}
</style>