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
x
17
17
1
<template>
2
<h2 class="subtitle"><nuxt-link :to="{path: filePath}" exact>Nuxt View Menu</nuxt-link></h2>
3
<h2 class="subtitle"><a :href="filePath">Vue View Menu</a></h2>
4
<h2 class="subtitle"><a href="files/officialMenu.pdf">HardCode View Menu</a></h2>
5
</template>
6
7
<script>
8
export default {
9
layout: 'default',
10
data () {
11
return {
12
filePath: 'files/officialMenu.pdf'
13
}
14
}
15
}
16
</script>
17
Advertisement
Answer
Nuxt uses vue-router by reading off the vue-router documentation you’ll be able to achieve what you want.
Example below
JavaScript
1
6
1
<!-- named route -->
2
<nuxt-link :to="{ name: 'user', params: { userId: 123 }}">User</nuxt-link>
3
4
<!-- with query, resulting in `/register?plan=private` -->
5
<nuxt-link :to="{ path: 'register', query: { plan: 'private' }}">Register</nuxt-link>
6
This will be available to your next page in $route object as $route.params or in the url query as seen above.