# Routing One of Nuxt core feature is the file-system router. Every Vue file created inside the pages/ directory creates a corresponding URL (or route) that displays the content of the file. Nuxt leverages code-splitting on each page by using dynamic imports to ship the minimum of JavaScript for the requested route. ## Pages Nuxt routing is based on [vue-router](https://router.vuejs.org/) and generates the routes from every component created in the [`pages/`](/guide/directory-structure/pages) directory, based on their filename. This file system routing uses naming conventions to create dynamic and nested routes: ::code-group ```text [pages/ directory] pages/ --| about.vue --| posts/ ----| [id].vue ``` ```js [Generated Router file] { "routes": [ { "path": "/about", "component": "pages/about.vue" }, { "path": "/posts/:id", "component": "pages/posts/[id].vue" } ] } ``` :: ## Navigation The `` component links pages between them. It renders a `` tag with the `href` attribute set to the route of the page. Once the application is hydrated, pages transitions are performed in JavaScript by updating the browser URL. This prevents full-page refreshes and allow for animated transitions. ```vue [pages/app.vue] ``` :ReadMore{link="/api/components/nuxt-link"} ## Route Parameters The `useRoute()` composable can be used in a ` ``` :ReadMore{link="/api/composables/use-route"} ## Route Middleware Nuxt provides a customizable route middleware framework you can use throughout your application, ideal for extracting code that you want to run before navigating to a particular route. ::alert{type=info} Route middleware run within the Vue part of your Nuxt app. Despite the similar name, they are completely different from server middleware, which are run in the Nitro server part of your app. :: There are three kinds of route middleware: 1. Anonymous (or inline) route middleware, which are defined directly in the pages where they are used. 2. Named route middleware, which are placed in the `middleware/` directory and will be automatically loaded via asynchronous import when used on a page. (**Note**: The route middleware name is normalized to kebab-case, so `someMiddleware` becomes `some-middleware`.) 3. Global route middleware, which are placed in the `middleware/` directory (with a `.global` suffix) and will be automatically run on every route change. Example of an `auth` middleware protecting the `/dashboard` page: ::code-group ```ts [middleware/auth.ts] export default defineNuxtRouteMiddleware((to, from) => { // isAuthenticated() is an example method verifying if an user is authenticated if (isAuthenticated() === false) { return navigateTo('/login') } }) ``` ```html [pages/dashboard.vue] ``` :: :ReadMore{link="/guide/directory-structure/middleware"}