AgentStack
SKILL verified MIT Self-run

El Breadcrumb

skill-jiaiyan-element-plus-skills-el-breadcrumb · by jiaiyan

Breadcrumb component for displaying the location of the current page. Invoke when user needs to show navigation paths, page hierarchy, or enable easier browsing back.

No reviews yet
0 installs
8 views
0.0% view→install

Install

$ agentstack add skill-jiaiyan-element-plus-skills-el-breadcrumb

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of El Breadcrumb? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Breadcrumb Component

Breadcrumb component displays the location of the current page, making it easier to browse back through navigation hierarchy.

When to Use

  • Page navigation paths
  • Category hierarchies
  • Document structures
  • Multi-level navigation

Basic Usage


  
    homepage
    promotion management
    promotion list
    promotion detail
  

Icon Separator


  
    homepage
    promotion management
    promotion list
  

import { ArrowRight } from '@element-plus/icons-vue'

API Reference

Breadcrumb Attributes

| Name | Description | Type | Default | |------|-------------|------|---------| | separator | Separator character | string | '/' | | separator-icon | Icon component for separator | string \| Component | — |

Breadcrumb Slots

| Name | Description | Subtags | |------|-------------|---------| | default | Customize default content | Breadcrumb Item |

BreadcrumbItem Attributes

| Name | Description | Type | Default | |------|-------------|------|---------| | to | Target route, same as vue-router to | string \| RouteLocationRaw | '' | | replace | If true, navigation won't leave history record | boolean | false |

BreadcrumbItem Slots

| Name | Description | |------|-------------| | default | Customize default content |

Common Patterns

Dynamic Breadcrumb


  
    
      {{ item.title }}
    
  

import { computed } from 'vue'
import { useRoute } from 'vue-router'

const route = useRoute()

const breadcrumbs = computed(() => {
  return route.matched.filter(r => r.meta?.title).map(r => ({
    path: r.path,
    title: r.meta.title
  }))
})

Best Practices

  1. Use to prop for vue-router integration
  2. Use separator-icon for custom separators
  3. Keep breadcrumb paths concise and meaningful

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.