Skip to content

Commit 3c8b4c7

Browse files
committedApr 1, 2024·
fix(theme): html text not showing properly in mobile nav menu
1 parent a6a7645 commit 3c8b4c7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎src/client/theme-default/components/VPNavScreenMenuLink.vue

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ const closeScreen = inject('close-screen') as () => void
1717
:target="item.target"
1818
:rel="item.rel"
1919
@click="closeScreen"
20-
>
21-
{{ item.text }}
22-
</VPLink>
20+
v-html="item.text"
21+
/>
2322
</template>
2423

2524
<style scoped>

0 commit comments

Comments
 (0)
Please sign in to comment.