I am trying to use <NuxtLink>
to redirect in Nuxt 3.
However, my page won't show after the URL change. That means, after clicking the link, the URL changes to whatever is stated in the to="", but the content doesn't show unless I refresh the page. Wonder what did I do wrong.
Here is my Routing code
<template>
<div class="top-nav-tab">
<NuxtLink to="/foundations"><h3>Foundations</h3></NuxtLink>
</div>
</template>
Here is my page code
<template>
<h2>Foundation page</h2>
</template>
useAsyncData
if you're using it in a lazy mode, something doesn't fetch from API correctly, thus it won't show anything β Gabar