
Security News
New CNA Scorecard Tool Ranks CVE Data Quality Across the Ecosystem
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
vue-router-multiguard
Advanced tools
Provides the ability to specify multiple guards for vue routes
Provides the ability to specify multiple guards for vue router routes.
npm install vue-router-multiguard
next()
with an argument other than undefined
.next()
with an argument other than undefined
, that argument will be passed to VueRouter.multiguard(function[] guards)
-> function(to, from, next) {... }
import VueRouter from 'vue-router';
import multiguard from 'vue-router-multiguard';
const guard1 = function(to, from, next) {
console.log('guard1 called');
next();
}
const guard2 = function(to, from, next) {
console.log('guard2 called');
next();
}
const router = new VueRouter({
routes: [
{
name: 'home',
path: '/',
component: {},
beforeEnter: multiguard([guard1, guard2]),
}
]
});
npm test
This project is licensed under the MIT License - see the LICENSE file for details
FAQs
Provides the ability to specify multiple guards for vue routes
The npm package vue-router-multiguard receives a total of 18,404 weekly downloads. As such, vue-router-multiguard popularity was classified as popular.
We found that vue-router-multiguard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.