Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问clear审计通过

vue-router-v4Vue router V4 开发

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,533

周安装

62

GitHub Stars

347

下载量

481
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vue-router-v4(Vue router V4 开发)
来源仓库:https://github.com/teachingai/full-stack-skills
仓库路径:skills/vue-router-v4
安装命令:
npx skills add https://github.com/teachingai/full-stack-skills --skill vue-router-v4
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/teachingai/full-stack-skills --skill vue-router-v4

简介

用于辅助 Vue Router v4 的开发工作。

  • 适合处理 Vue 3 应用的路由配置与导航实现。
  • 可协助生成路由规则和处理异步加载场景。
  • 使用时应确保与项目技术栈版本匹配。vue-router-v4 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 安装方式:通过 GitHub 仓库安装,适用于 Claude 等工具。

SKILL.md

When to use this skill

Use this skill whenever the user wants to:

  • Set up routing in a Vue 3 application
  • Configure routes, nested routes, and named routes
  • Implement navigation guards (global, per-route, in-component)
  • Use programmatic navigation with router.push(), router.replace(), etc.
  • Handle dynamic route matching and route parameters
  • Work with route meta fields and route records
  • Implement lazy loading and code splitting for routes
  • Use Vue Router with Composition API (useRouter, useRoute)
  • Configure different history modes (hash, HTML5 history, memory)
  • Handle scroll behavior and transitions
  • Implement typed routes with TypeScript
  • Migrate from Vue Router 3 to Vue Router 4
  • Extend RouterLink component
  • Handle navigation failures and errors
  • Work with dynamic routing (adding/removing routes at runtime)

How to use this skill

This skill is organized to match the Vue Router official documentation structure (https://router.vuejs.org/guide/, https://router.vuejs.org/api/). When working with Vue Router:

  1. Identify the topic from the user's request:

- Getting started/快速开始 → examples/essentials/getting-started.md - Dynamic route matching/动态路由匹配 → examples/essentials/dynamic-route-matching.md - Routes matching syntax/路由匹配语法 → examples/essentials/routes-matching-syntax.md - Named routes/命名路由 → examples/essentials/named-routes.md - Nested routes/嵌套路由 → examples/essentials/nested-routes.md - Programmatic navigation/编程式导航 → examples/essentials/programmatic-navigation.md - Named views/命名视图 → examples/essentials/named-views.md - Redirect and alias/重定向和别名 → examples/essentials/redirect-alias.md - Passing props to route components/向路由组件传递 props → examples/essentials/passing-props.md - Different history modes/不同的历史模式 → examples/essentials/different-history-modes.md - Navigation guards/导航守卫 → examples/advanced/navigation-guards.md - Route meta fields/路由元信息 → examples/advanced/route-meta-fields.md - Data fetching/数据获取 → examples/advanced/data-fetching.md - Composition API/组合式 API → examples/advanced/composition-api.md - RouterView slot/RouterView 插槽 → examples/advanced/routerview-slot.md - Transitions/过渡效果 → examples/advanced/transitions.md - Scroll behavior/滚动行为 → examples/advanced/scroll-behavior.md - Lazy loading routes/懒加载路由 → examples/advanced/lazy-loading-routes.md - Typed routes/类型化路由 → examples/advanced/typed-routes.md - Extending RouterLink/扩展 RouterLink → examples/advanced/extending-router-link.md - Navigation failures/导航失败 → examples/advanced/navigation-failures.md - Dynamic routing/动态路由 → examples/advanced/dynamic-routing.md

  1. Load the appropriate example file from the examples/ directory: Essentials (基础) - examples/essentials/: Advanced (高级) - examples/advanced/:

- examples/essentials/getting-started.md - Creating a router and basic setup - examples/essentials/dynamic-route-matching.md - Dynamic route matching with params - examples/essentials/routes-matching-syntax.md - Route matching syntax and patterns - examples/essentials/named-routes.md - Named routes and navigation - examples/essentials/nested-routes.md - Nested routes and RouterView - examples/essentials/programmatic-navigation.md - Programmatic navigation with router methods - examples/essentials/named-views.md - Named views and multiple RouterView - examples/essentials/redirect-alias.md - Redirects and aliases - examples/essentials/passing-props.md - Passing props to route components - examples/essentials/different-history-modes.md - Hash, HTML5 history, and memory modes - examples/advanced/navigation-guards.md - Global, per-route, and in-component guards - examples/advanced/route-meta-fields.md - Route meta fields and custom data - examples/advanced/data-fetching.md - Data fetching strategies - examples/advanced/composition-api.md - Using useRouter() and useRoute() with Composition API - examples/advanced/routerview-slot.md - RouterView slot props - examples/advanced/transitions.md - Route transitions and animations - examples/advanced/scroll-behavior.md - Scroll behavior configuration - examples/advanced/lazy-loading-routes.md - Lazy loading routes and code splitting - examples/advanced/typed-routes.md - TypeScript typed routes - examples/advanced/extending-router-link.md - Extending RouterLink component - examples/advanced/navigation-failures.md - Handling navigation failures - examples/advanced/dynamic-routing.md - Adding and removing routes dynamically

  1. Follow the specific instructions in that example file for syntax, structure, and best practices Important Notes:

- All examples follow Vue Router 4 API - Examples include both JavaScript and TypeScript versions where applicable - Each example file includes key concepts, code examples, and key points - Always check the example file for best practices and common patterns

  1. Reference API documentation in the api/ directory when needed:

- api/router.md - Router instance API (createRouter, addRoute, removeRoute, etc.) - api/route-records.md - Route record types and properties - api/useRouter-useRoute.md - Composition API functions (useRouter, useRoute) - api/navigation-helpers.md - Navigation helper functions - api/router-link-router-view-components.md - RouterLink and RouterView components - api/history-modes-api.md - History mode APIs - api/error-and-failure-types.md - Error and failure types

  1. Use templates from the templates/ directory:

- templates/router-setup.md - Router setup templates - templates/route-config.md - Route configuration templates

Examples and Templates

This skill includes detailed examples organized to match the Vue Router official documentation structure (https://router.vuejs.org/guide/, https://router.vuejs.org/api/). All examples are in the examples/ directory, organized by topic:

Essentials (基础) - examples/essentials/

  • examples/essentials/getting-started.md - Creating a router, installing Vue Router, and basic setup
  • examples/essentials/dynamic-route-matching.md - Dynamic route matching with params and query
  • examples/essentials/routes-matching-syntax.md - Route matching syntax, catch-all routes, and regex
  • examples/essentials/named-routes.md - Named routes and navigation with names
  • examples/essentials/nested-routes.md - Nested routes and nested RouterView
  • examples/essentials/programmatic-navigation.md - Programmatic navigation with router.push(), router.replace(), router.go()
  • examples/essentials/named-views.md - Named views and multiple RouterView components
  • examples/essentials/redirect-alias.md - Redirects and aliases configuration
  • examples/essentials/passing-props.md - Passing props to route components
  • examples/essentials/different-history-modes.md - Hash mode, HTML5 history mode, and memory mode

Advanced (高级) - examples/advanced/

  • examples/advanced/navigation-guards.md - Global guards, per-route guards, and in-component guards
  • examples/advanced/route-meta-fields.md - Route meta fields and accessing meta in guards
  • examples/advanced/data-fetching.md - Data fetching strategies (before navigation, after navigation)
  • examples/advanced/composition-api.md - Using useRouter() and useRoute() with Composition API
  • examples/advanced/routerview-slot.md - RouterView slot props and custom rendering
  • examples/advanced/transitions.md - Route transitions and animations
  • examples/advanced/scroll-behavior.md - Scroll behavior configuration
  • examples/advanced/lazy-loading-routes.md - Lazy loading routes and code splitting
  • examples/advanced/typed-routes.md - TypeScript typed routes and type safety
  • examples/advanced/extending-router-link.md - Extending RouterLink component
  • examples/advanced/navigation-failures.md - Handling navigation failures and errors
  • examples/advanced/dynamic-routing.md - Adding and removing routes dynamically at runtime

Templates Directory (templates/)

  • templates/router-setup.md - Router setup templates for different scenarios
  • templates/route-config.md - Route configuration templates

To use examples:

  • Identify the topic from the user's request
  • Load the appropriate example file from the corresponding directory
  • Follow the instructions, syntax, and best practices in that file
  • Adapt the code examples to your specific use case

To use templates:

  • Reference templates/router-setup.md for router setup templates
  • Use templates/route-config.md for route configuration templates
  • Adapt templates to your specific needs and coding style

API Reference

Detailed API documentation is available in the api/ directory, organized to match the official Vue Router API documentation structure:

Router API (api/router.md)

  • createRouter() - Creating a router instance
  • Router instance methods: addRoute(), removeRoute(), hasRoute(), getRoutes(), push(), replace(), go(), back(), forward()
  • Router instance properties: currentRoute, options

Route Records API (api/route-records.md)

  • Route record types and properties
  • Route configuration options

Composition API (api/useRouter-useRoute.md)

  • useRouter() - Access router instance in setup
  • useRoute() - Access current route in setup

Navigation Helpers (api/navigation-helpers.md)

  • Navigation helper functions and utilities

Components API (api/router-link-router-view-components.md)

  • RouterLink component props and usage
  • RouterView component props and usage

History Modes API (api/history-modes-api.md)

  • createWebHistory() - HTML5 history mode
  • createWebHashHistory() - Hash mode
  • createMemoryHistory() - Memory mode

Error and Failure Types (api/error-and-failure-types.md)

  • Navigation failure types
  • Error handling

To use API reference:

  1. Identify the API you need help with
  2. Load the corresponding API file from the api/ directory
  3. Find the API signature, parameters, return type, and examples
  4. Reference the linked example files for detailed usage patterns
  5. All API files include links to relevant example files in the examples/ directory

Best Practices

  1. Use named routes: Use named routes for better maintainability and refactoring
  2. Lazy load routes: Use dynamic imports for route components to enable code splitting
  3. Type safety: Use TypeScript with typed routes for better type safety
  4. Navigation guards: Use navigation guards appropriately (global, per-route, in-component)
  5. Route meta: Use route meta fields for custom data and permissions
  6. History mode: Choose the appropriate history mode based on deployment environment
  7. Scroll behavior: Configure scroll behavior for better UX
  8. Error handling: Handle navigation failures gracefully

Resources

Keywords

Vue Router, router, routing, navigation, route, routes, nested routes, named routes, dynamic routes, route params, route query, navigation guards, route meta, programmatic navigation, RouterLink, RouterView, useRouter, useRoute, history mode, hash mode, HTML5 history, lazy loading, code splitting, typed routes, TypeScript, 路由, 导航, 路由守卫, 嵌套路由, 命名路由, 动态路由, 编程式导航, 懒加载, 类型化路由

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.68%
按下载量换算143

Gemini CLI

23.47%
按下载量换算113

Antigravity

15.9%
按下载量换算76

Codex

12.43%
按下载量换算60

trae

6.9%
按下载量换算33

OpenCode

3.28%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills