Skip to content

Commit f689fbb

Browse files
fix navitem link
1 parent 7c82994 commit f689fbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ui/HamburgerMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</svg>
77
</button>
88
<div :class="['flex flex-col items-start bg-[#252424] absolute left-0 w-full py-2 z-1', isOpen ? 'top-[80px]' : 'top-[-200px] opacity-0', 'transition-all']">
9-
<a class="cursor-pointer w-full hover:bg-grey-400 py-2 px-5" v-for="item, i in navItems" :key="i" href="item.link" target="_blank">
9+
<a class="cursor-pointer w-full hover:bg-grey-400 py-2 px-5" v-for="item, i in navItems" :key="i" :href="item.link" target="_blank">
1010
<span class="px-1">{{item.title}}</span>
1111
</a>
1212
<a class="cursor-pointer w-full hover:bg-grey-400 py-2 px-5">

0 commit comments

Comments
 (0)