[Vuejs]-Nuxt JS reload data by url parameter

-1👍

Okay, found a solution.
I created the following file tree:

accounts/_test/index.vue

And in my header I have a nuxt-link:

<NuxtLink :to="{name:'accounts-test', params: {test: 'main'}}>

And it works as expected.

Leave a comment