[Vuejs]-Does <NuxtLink> have SEO advantages over programatic navigation?

0πŸ‘

βœ…

<nuxt-link> is basically a <router-link>, so it should have 0 benefit SEO-wise over the Vue variant.

As of what to use in your case, it’s more a matter of button vs a:href. If you want to navigate to another page, it should be a link.

More details in this article: https://www.smashingmagazine.com/2019/02/buttons-interfaces/

-1πŸ‘

Other advantages when using nuxt-link Nuxt can automatically prefetch pages with the prefetchLinks and prefetchPayloads options.

prefetchlinks

prefetchpayloads

Leave a comment