mirror of
https://github.com/ArthurDanjou/website.git
synced 2026-01-14 12:14:42 +01:00
20 lines
401 B
Vue
20 lines
401 B
Vue
<script setup lang="ts">
|
|
defineProps({
|
|
title: {
|
|
type: String,
|
|
default: 'Uses Slot title',
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<li class="group relative flex flex-col items-start">
|
|
<h3 class="text-base font-semibold tracking-tight text-zinc-800 dark:text-zinc-100">
|
|
{{ title }}
|
|
</h3>
|
|
<p class="relative z-10 mt-2 text-sm text-zinc-600 dark:text-zinc-400">
|
|
<slot />
|
|
</p>
|
|
</li>
|
|
</template>
|