Install
$ agentstack add skill-jiaiyan-element-plus-skills-el-mention ✓ 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Mention Component
Mention allows users to mention someone or something in an input field.
When to Use
- User mentions (@username)
- Item references
- Tagging functionality
- Rich text inputs
Basic Usage
import { ref } from 'vue'
const value = ref('')
const options = [
{ value: 'user1', label: 'User 1' },
{ value: 'user2', label: 'User 2' },
{ value: 'user3', label: 'User 3' }
]
Textarea Mode
Custom Props
import { ref } from 'vue'
const value = ref('')
const options = [
{ id: '1', name: 'User 1' },
{ id: '2', name: 'User 2' }
]
Custom Label
{{ item.label }}
Remote Loading
import { ref } from 'vue'
const value = ref('')
const options = ref([])
const loading = ref(false)
const handleSearch = async (pattern, prefix) => {
loading.value = true
const res = await fetch(`/api/users?q=${pattern}`)
options.value = await res.json()
loading.value = false
}
Custom Trigger
Delete as Whole
API Reference
Attributes
| Name | Description | Type | Default | |------|-------------|------|---------| | model-value / v-model | Input value | string | — | | options | Mention options | MentionOption[] | [] | | props | Configuration options | MentionOptionProps | {value: 'value', label: 'label', disabled: 'disabled'} | | prefix | Trigger character | string \| string[] | '@' | | split | Split character | string | ' ' | | filter-option | Custom filter logic | (pattern, option) => boolean | — | | placement | Popup placement | 'bottom' \| 'top' | 'bottom' | | show-arrow | Show dropdown arrow | boolean | false | | offset | Dropdown offset | number | 0 | | whole | Delete mention as whole | boolean | false | | check-is-whole | Custom whole check | (pattern, prefix) => boolean | — | | loading | Loading state | boolean | false | | popper-class | Custom dropdown class | string \| object | '' | | popper-style | Custom dropdown style | string \| object | — |
Events
| Name | Description | Type | |------|-------------|------| | search | Triggered on prefix hit | (pattern, prefix) => void | | select | Option selected | (option, prefix) => void | | whole-remove | Whole mention removed | (pattern, prefix) => void |
Slots
| Name | Description | Type | |------|-------------|------| | label | Custom option label | { item, index } | | loading | Loading content | — | | header | Dropdown header | — | | footer | Dropdown footer | — |
Exposes
| Name | Description | Type | |------|-------------|------| | input | Input component instance | Ref | | tooltip | Tooltip component instance | Ref | | dropdownVisible | Dropdown visibility | ComputedRef |
Best Practices
- Use
loadingfor async option loading - Use
prefixfor different trigger characters - Use
wholefor better UX when deleting mentions
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.