# Badge
Documentation and examples for badges, our small count and labeling component.
To use the custom badges, import the Badge component
import {Badge} from 'src/components'
1
Global usage
Vue.component(Badge.name, Badge)
1
For local usage
export default {
components: {
[Badge.name]: Badge
}
}
1
2
3
4
5
2
3
4
5
# Badge inside button
Badges can be used as part of links or buttons to provide a counter.
# Contextual variations
Add any of the below mentioned modifier type
to change the appearance of a badge.
Primary Info Success Danger Warning Default
# Links
By providing a href
prop you can quickly get actionable link
badges with hover and focus states.
# Slots
Name | Description |
---|---|
default | Default content for the badge |
← Alert Breadcrumb →