mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
1.1 KiB
1.1 KiB
icon | title | head.title |
---|---|---|
IconDirectory | pages | Pages directory |
The pages/
directory is optional, meaning that if you only use app.vue, vue-router won't be included, reducing your application bundle size.
Pages directory
Nuxt will automatically integrate Vue Router and map pages/
directory into the routes of your application.
Dynamic Routes
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.
If you need a catch-all route, you create it by using a file named like [...slug].vue
. This will match all routes under that path, and thus it doesn't support any non-dynamic text.
Example
-| pages/
---| index.vue
---| users-[group]/
-----| [id].vue
Given the example above, you can access group/id within your component via the $route
object:
<template>
{{ $route.params.group }}
{{ $route.params.id }}
</template>