16 lines
No EOL
328 B
Vue
16 lines
No EOL
328 B
Vue
<template>
|
|
<div class="current_car_info-text">
|
|
<div class="d-flex align-items-center justify-content-center">
|
|
<span class="text-center text-dark fs-5 d-block">{{ text }}</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Header",
|
|
props: {
|
|
text: String
|
|
}
|
|
};
|
|
</script> |