Skip to content
Advertisement

How to get route url params in a page in Nuxt2 and 3?

I am using Nuxt.js, and have a dymanic page which is defined under

JavaScript

So, when I visit the page url, say, http://localhost:3000/post/hello-world, how can I read this slug parameter value inside my page.

Currently I am geting it using asyncData as follows:

JavaScript

This is working fine, but I think this is not the best way, and there should be a better way to make the parameter available to the page. Any help is appreciated!

Advertisement

Answer

Note: This answer is for Vue2 and Nuxt2. If you are looking for answer for nuxt3 or vue3, refer to other answers.

In the .vue file, to get the Vue router route object:

JavaScript

( notice the Vue router is under the this.$router object)

The $route object has some useful properties:

JavaScript

You can use the $route object like this:

JavaScript

the url path params is under the route.params, as in your case route.params.slug

JavaScript

the Vue mouted hook only run on client, when you want to get the params on server, you can use the asyncData method:

JavaScript

But, pay attention:

It will be called server-side once (on the first request to the Nuxt app) and client-side when navigating to further routes. ref

If you don’t need the params information on server, like you don’t need to get data based on the params on server side, I think the mounted hook will suffice.

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