We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5b8caf commit eb2755aCopy full SHA for eb2755a
components/section/BlogPosts.vue
@@ -19,13 +19,7 @@ const props = defineProps({
19
20
<div class="mb-4 grid grid-cols-1 gap-4 md:grid-cols-2">
21
<div v-for="(article, ix) of articles" :key="ix">
22
- <!--
23
- Specify `external` to force the link to be considered as external. This
24
- resolves an issue where navigating to a blog post would load the previous
25
- post if the user clicked the back button -- this unexpected behavior is
26
- still not entirely understood, but at least this is a workaround.
27
- -->
28
- <NuxtLink :to="article.path" external>
+ <NuxtLink :to="article.path">
29
<div
30
class="h-full space-y-4 rounded-lg bg-white/20 p-4 text-white drop-shadow-lg hover:ring-1 hover:ring-white"
31
>
0 commit comments