20 lines
411 B
Vue
20 lines
411 B
Vue
<script setup>
|
|
/** Propiedades */
|
|
const props = defineProps({
|
|
name: String,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<ul v-if="$slots['default']">
|
|
<li class="px-5 hidden md:block">
|
|
<div class="flex flex-row items-center h-8 cursor-pointer">
|
|
<div class="text-sm font-light tracking-wide text-gray-400 uppercase">
|
|
{{ name }}
|
|
</div>
|
|
</div>
|
|
</li>
|
|
<slot />
|
|
</ul>
|
|
</template>
|