refactor: clean up Dropdown

This commit is contained in:
Zack Spear
2023-05-31 15:41:56 -07:00
parent a633e2ff82
commit 2e9145372e

View File

@@ -71,19 +71,6 @@ const links = computed(():UserProfileLink[] => {
<template v-if="links">
<li v-for="(link, index) in links" :key="`link_${index}`">
<upc-dropdown-item :item="link" />
<!-- <a
:href="link.href"
:title="link.title"
:target="link.external ? '_blank' : ''"
:rel="link.external ? 'noopener noreferrer' : ''"
class="Dropdown_link"
:class="{
'Dropdown_link--emphasize': link.emphasize
}"
>
<component :is="link.icon" class="Dropdown_linkIcon" aria-hidden="true" />
{{ link.text }}
</a> -->
</li>
</template>
</ul>