12 lines
285 B
Vue
12 lines
285 B
Vue
<template>
|
|
<header class="flex | bg-white | rounded-2xl | p-8 mb-16">
|
|
<h1 class="font-serif | px-8">{{ title }}</h1>
|
|
<button class="btn | ml-auto">Demander un RDV</button>
|
|
</header>
|
|
</template>
|
|
|
|
<script setup>
|
|
const { title } = defineProps({
|
|
title: String,
|
|
});
|
|
</script>
|