# Alerts
Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.
import {BaseAlert} from 'src/components'
Global usage
Vue.component(BaseAlert.name, BaseAlert)
For local usage
export default {
components: {
BaseAlert
}
}
# Examples
Primary! This is a primary alert—check it out!
Info! This is a info alert—check it out!
Success! This is a success alert—check it out!
Danger! This is a danger alert—check it out!
Warning! This is a warning alert—check it out!
Default! This is a warning alert—check it out!
Show Code
# Dismissing
Primary! This is a primary alert—check it out!
Info! This is a info alert—check it out!
Success! This is a success alert—check it out!
Danger! This is a danger alert—check it out!
Warning! This is a warning alert—check it out!
Default! This is a warning alert—check it out!
Show Code
# Props
← Item management Badge →