Notifications
We created a custom notification plugin so you can easily display pretty notifications in your dashboard.
The plugin is globally registered inside blackDashboard.js
file and you can use it everywhere
in the dashboard.
In order for the plugin to work, we need to declare this piece of code in the top most component
of our app. This is done inside App.vue
file.
You can trigger notifications both from template and javascript via $notify
or this.$notify
method.
<notifications></notifications>
Example
Show Code
Notification position
Show Code
Notification props
Prop Name | Type | Default | Description |
---|---|---|---|
message | String | N/A | |
title | String | N/A | Notification title |
icon | String | N/A | Notification icon |
verticalAlign | String | top | Vertical alignment of notification (top|bottom) |
horizontalAlign | String | right | Horizontal alignment of notification (left|center|right) |
type | String | info | Notification type of notification (default|info|primary|danger|warning|success) |
timeout | Number | 5000 | Notification timeout (closes after X milliseconds). Default is 5000 (5s) |
timestamp | Date | Sun Apr 06 2025 11:07:33 GMT+0000 (Coordinated Universal Time) | Notification timestamp (used internally to handle notification removal correctly) |
component | Object | Function | N/A | Custom content component. Cane be a `.vue` component or render function |
showClose | Boolean | true | Whether to show close button |
closeOnClick | Boolean | true | Whether to close notification when clicking it' body |
clickHandler | Function | N/A | Custom notification click handler |