auth0-vue
Audited by Runlayer on Feb 24, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: auth0-vue description: Use when adding authentication to Vue.js 3 applications (login, logout, user sessions, protected routes) - integrates @auth0/auth0-vue SDK for SPAs with Vite or Vue CLI --- # Auth0 Vue.js Integration Add authentication to Vue.js 3 single-page applications using @auth0/auth0-vue.
Malicious tool definition detected
Tool: references/api.md Description: ## Common Patterns ### Protected Route (Vue Router) **Install Vue Router:** ```bash npm install vue-router ``` **Configure router (`src/router/index.ts`):** ```typescript import { createRouter, createWebHistory } from 'vue-router'; import { createAuthGuard } from '@auth0/auth0-vue'; import Home from '../views/Home.vue'; import Profile from '../views/Profile.vue'; const router = createRouter({ history: createWebHistory(), routes: [ { path: '/', name: 'Home', c
Malicious tool definition detected
Tool: references/integration.md [1/2] Description: # Auth0 Vue Integration Patterns Practical implementation patterns and examples for common use cases.
Tool: references/integration.md [2/2]
Malicious tool definition detected
Tool: references/setup.md Description: # Auth0 Vue Setup Guide Complete setup instructions with automated scripts and manual configuration options.