- <template>
- <div class="relative">
- <div class="absolute inset-x-0 border-b border-gray-200" />
- <div class="relative flex items-center">
- <span class="absolute bg-white pr-2 text-sm font-medium">{{
- title
- }}</span>
- </div>
- </div>
- </template>
- <script lang="ts" setup>
- defineProps<{
- title: string;
- }>();
- </script>
|