![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
nuxt-typed-router
Advanced tools
Provide autocompletion for pages route names generated by Nuxt router
Provide a safe typed router to nuxt with auto-generated typed definitions for route names
Nuxt is great because it generate the router based on your pages directory. It generates all the pages name and it abstract a lot of boilerplate.
Problem: If you want a type-safe routing flow, the current model can be hard to maintain if you modify the page file name and is error prone in big projects.
Solution: Thanks to Nuxt powerful hook system, this module reads all your routes and generate typings and enums accordingly
yarn add -D nuxt-typed-router
#or
npm install -D nuxt-typed-router
First, register the module in the nuxt.config.[js|ts]
const config = {
...,
modules: [
'nuxt-typed-router',
]
}
Or
const config = {
...,
modules: [
['nuxt-typed-router', {
// options
}],
]
}
Options:
type Options = {
// Path to where you cant the file to be saved (ex: "./src/models/__routes.ts")
filePath?: string;
// Name of the routesNames object (ex: "routesTree")
// Default: "routerPagesNames"
routesObjectName?: string;
// Strip `@` sign from declared routes (ex: `admin/@home.vue` will be accessed like this `routerPagesNames.admin.home`
// and the route name will be `admin-home` instead of `admin-@home`)
// Default: true
stripAtFromNames?: boolean;
};
routerPagesNames
global objectThe module will create a file with the global object of the route names inside.
You have to specify the path of the generated file in your configuration
// nuxt.config.js
const config = {
typedRouter: {
filePath: './models/__routes.js', // or .ts,
},
};
// Or
const config = {
modules: [
[
'nuxt-typed-router',
{
filePath: './models/__routes.js', // or .ts,
},
],
],
};
Given this structure
├── pages
├── index
├── content.vue
├── index.vue
├── communication.vue
├── statistics.vue
├── users.vue
├── index.vue
├── forgotpassword.vue
├── reset-password.vue
│ └── login.vue
└── ...
The generated file will look like this
export const routerPagesNames = {
forgotpassword: 'forgotpassword',
login: 'login',
resetPassword: 'reset-password',
index: {
index: 'index',
communication: 'index-communication',
content: 'index-content',
statistics: 'index-statistics',
users: 'index-users',
},
};
You can now just import it
import { routerPagesNames } from '~/models/__routes.js';
export default {
mounted() {
this.$router.push({ name: routerPagesNames.index.content });
},
};
Create a plugin nuxt-typed-router.js|ts
, and register it in your nuxt.config.js
import { routerPagesNames } from '...your file path';
export default (ctx, inject) => {
inject('routesNames', routerPagesNames);
};
Then create shims a file in ~/shims/nuxt.d.ts
import { routerPagesNames } from '...your file path';
declare module 'vue/types/vue' {
interface Vue {
$routesNames: typeof routerPagesNames;
}
}
You will now have $routeNames
exposed in all your component without importing it and it will be typed automaticaly!
yarn
or npm install
FAQs
Provide autocompletion for routes paths, names and params in Nuxt apps
The npm package nuxt-typed-router receives a total of 11,012 weekly downloads. As such, nuxt-typed-router popularity was classified as popular.
We found that nuxt-typed-router demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.