vue-notifications
VueNotifications - agnostic non-blocking notifications library, that allow you to use notifications in declaration style.
Installation
via npm:
via bower:
or download [latest release][1]
include in project:
Setup and configuration
Attention: By default VueNotification send all messages to console. To activate non-blocking notifiction you've got to use third-party library, like toasr. I suggest you to use [mini-toastr][2] (npm i mini-toastr --save
)
If you want to setup VueNotification's global configuration, you can do it simple:
Also you can use any other word instead of notifications
for configs:
Usage
You've got to specify notifications config:
Now you can call this.showLoginError()
in any place of this page (i.e. in methods, or whatever).
You also can call .success()
, .error()
and other methods directly (for example in JavaScript files):
In some.js
:
Overriding config.
Even if you have specify config, you can ovverride it in any call simple by sending config object: this.showLoginError({type: 'warn'})
. i.e.: