Install
$ agentstack add skill-jiaiyan-element-plus-skills-el-breadcrumb ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
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
- Use
toprop for vue-router integration - Use
separator-iconfor custom separators - 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.
- Author: jiaiyan
- Source: jiaiyan/element-plus-skills
- License: MIT
- Homepage: https://skills.sh/jiaiyan/element-plus-skills/element-plus-skills
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.