library_components/components/Ml/DropDown/MlDropDownItem.vue
2024-07-09 11:00:50 +02:00

22 lines
476 B
Vue

<template>
<div :class="rootPT">
<slot />
</div>
</template>
<script setup lang="ts">
import { computed, ref } from "vue";
import { twMerge } from 'tailwind-merge';
import type { DropDownItemPT, DropDownItemProps } from './types';
const props = withDefaults(defineProps<DropDownItemProps>(), {});
const PT = {
root: {
class: ''
}
} as DropDownItemPT;
const rootPT = computed(() => twMerge(PT.root?.class, props.pt?.root?.class));
</script>