Skip to content

Commit

Permalink
fix: p tag wrap ul for nuxt ssr (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
YunYouJun authored Sep 9, 2024
1 parent e7ececf commit b168368
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/pages/hi/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ definePageMeta({
</div>

<template v-if="user.otherNames.length">
<p my-4 text-sm>
<div my-4 text-sm>
<span op-50>Also as known as:</span>
<ul>
<li v-for="otherName in user.otherNames" :key="otherName">
Expand All @@ -32,7 +32,7 @@ definePageMeta({
</router-link>
</li>
</ul>
</p>
</div>
</template>

<Counter />
Expand Down

0 comments on commit b168368

Please sign in to comment.