since v0.3.0
DropDownMenuBannerItemA list element the can contain an arbitrary template via the default slot. The element will intercept and swallow all click events so they don't bubble up.
Preview
Properties
Name
Type
Default
Value
show
Boolean
true
Example
<template>
<DropDownMenuBannerItem>
<span class="text-sm">Signed in as</span>
<span class="font-medium">Stefan</span>
</DropDownMenuBannerItem>
</template>
<script setup>
import { DropDownMenuBannerItem } from '@discue/ui-components'
</script>