I'm Using Nuxt3 js and when I click nuxt-link java script code is working but the page is not coming till I make refresh this is navbar code:
<template>
<nuxt-link to="/about">About</nuxt-link>
</template>
this is about page:
<template>
<div class="pt-8"><h1>About Page</h1></div>
</template>
and this is my default.vue layout:
<template>
<div lang="ar" dir="rtl">
<Navbar /> <slot />
<app-footer />
</div>
</template>