Skip to content

Commit 0251a02

Browse files
committed
Update LayoutNavItem.vue
1 parent 0ad9df5 commit 0251a02

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed
Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
<template>
2-
<li
3-
class="inline-block py-2 text-xl font-semibold no-underline lg:text-base lg:px-4"
4-
>
5-
<NuxtLink :to="to">
6-
<span class="text-xl text-white no-underline lg:text-black">
7-
{{ label }}
8-
</span>
9-
</NuxtLink>
10-
</li>
2+
<ul>
3+
<li class="inline-block py-2 text-xl font-semibold no-underline lg:text-base lg:px-4">
4+
<NuxtLink :to="to">
5+
<span class="text-xl text-white no-underline lg:text-black">
6+
{{ label }}
7+
</span>
8+
</NuxtLink>
9+
</li>
10+
</ul>
1111
</template>
1212

1313
<script setup>
1414
const props = defineProps({
15-
to: {
16-
type: String,
17-
required: true,
18-
},
19-
label: {
20-
type: String,
21-
required: true,
22-
},
15+
to: {
16+
type: String,
17+
required: true,
18+
},
19+
label: {
20+
type: String,
21+
required: true,
22+
},
2323
});
2424
</script>

0 commit comments

Comments
 (0)