Skip to content
Advertisement

How to set data into nuxt.js nuxt-link?

I’m trying to pass data into nuxt-link but nuxt-link is just returning a 404 error when I click on the link. It doesn’t seem to be getting and loading the file….

The second 2 links that use :href and hardcoding works

JavaScript

Advertisement

Answer

Nuxt uses vue-router by reading off the vue-router documentation you’ll be able to achieve what you want.

router-link documentation

Example below

JavaScript

This will be available to your next page in $route object as $route.params or in the url query as seen above.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement