mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
e2f5a3c9b0
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
701 B
701 B
Pages
Nuxt will automatically integrate Vue Router and map pages/
directory into the routes of your application.
If you place anything within square brackets, it will be turned into a dynamic route parameter. You can mix and match multiple parameters and even non-dynamic text within a file name or directory.
Example
-| pages/
---| index.vue
---| users-[group]/
-----| [userid].vue
Given the example above, you can access group/userid within your component via the $route
object:
<template>
{{ $route.params.group }}
{{ $route.params.id }}
</template>