22 lines
377 B
Vue
22 lines
377 B
Vue
<template>
|
|
<div class="current_car_info-text">
|
|
<div class="d-flex align-items-center justify-content-center">
|
|
<h2 class="text-center fs-5 d-block fw-normal mb-0">{{ text }}</h2>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Header",
|
|
props: {
|
|
text: String,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
h2 {
|
|
color: $gray-550;
|
|
}
|
|
</style>
|