Vue.js notifications
A simple notification library for vue3.
This is a fork and port of Vue 2 vue-notifications created by euvl to now support Vue 3. If you're using Vue 2.x use his version.
Setup
Add dependencies to your main.js
:
Add the global component to your App.vue
:
Usage
Trigger notifications from your .vue
files:
Or trigger notifications from other files, for example, your router:
Migration
Vue 2.x syntax
Vue 3.x syntax
Component props
The majority of settings for the Notifications component are configured using props:
Note that all props are optional.
Name | Type | Default | Description |
---|---|---|---|
position | String/Array | 'top right' | Part of the screen where notifications will pop out |
width | Number/String | 300 | Width of notification holder, can be % , px string or number.Valid values: '100%', '200px', 200 |
classes | String/Array | 'vue-notification' | List of classes that will be applied to notification element |
group | String | null | Name of the notification holder, if specified |
duration | Number | 3000 | Time (in ms) to keep the notification on screen (if negative - notification will stay forever or until clicked) |
speed | Number | 300 | Time (in ms) to show / hide notifications |
animation-type | String | 'css' | Type of animation, currently supported types are css and velocity |
animation-name | String | null | Animation name required for css animation |
animation | Object | Custom | Animation configuration for Velocity animation |
max | Number | Infinity | Maximum number of notifications that can be shown in notification holder |
reverse | Boolean | false | Show notifications in reverse order |
ignoreDuplicates | Boolean | false | Ignore repeated instances of the same notification |
closeOnClick | Boolean | true | Close notification when clicked |
API
Notifications are triggered via the API:
To remove notifications, include the clean: true
parameter.
Plugin Options
Configure the plugin itself using an additional options object:
All options are optional:
Name | Type | Default | Description |
---|---|---|---|
name | String | notify | Defines the instance name. It's prefixed with the dollar sign. E.g. $notify |
componentName | String | notifications | The component's name |
Note: setting
componentName
can cause issues when using SSR.
Features
Position
Position the component on the screen using the position
prop:
It requires a string
with two keywords for vertical and horizontal postion.
Format: "<vertical> <horizontal>"
.
- Horizontal options:
left
,center
,right
- Vertical options:
top
,bottom
Default is "top right"
.
Width
Width can be set using a number
or string
with optional %
or px
extensions:
Type
Set the type
of a notification (warn, error, success, etc) by adding a type
property to the call:
This will add the type
(i.e. "success") as a CSS class name to the .vue-notification
element.
See the Styling section for how to hook onto the class and style the popup.
Groups
For different classes of notifications, i.e...
- authentication errors (top center)
- app notifications (bottom-right)
...specify the group
attribute:
Trigger a notification for a specific group by specifying it in the API call:
Customisation
Styling
Vue Notifications comes with default styling, but it's easy to replace with your own.
Specify one or more class hooks via the classes
prop on the global component:
This will add the supplied class/classes to individual notification elements:
Then include custom css rules to style the notifications:
Note that the default rules are:
Content
To completely replace notification content, use Vue's slots system:
The props
object has the following members:
Name | Type | Description |
---|---|---|
item | Object | Notification object |
close | Function | A function to close the notification |
Animation
Vue Notification can use the Velocity library to power the animations using JavaScript.
To use, manually install velocity-animate
& pass the library to the vue-notification
plugin (the reason for doing that is to reduce the size of this plugin).
In your main.js
:
In the template, set the animation-type
prop:
The default configuration is:
To assign a custom animation, use the animation
prop:
Note that enter
and leave
can be an object
or a function
that returns an object
:
FAQ
Check closed issues with FAQ
label to get answers for most asked questions.
Development
To run a local demo:
To contribute to the library: