Simple best Vue plugin that allow you to print alert for you app .
Install
npm install --save vue-notification
In main.js:
import Vue from 'vue'
import Notifications from 'vue-notification'
/* or for SSR: import Notifications from 'vue-notification/dist/ssr.js' */
Vue.use(Notifications)
In App.vue:
<notifications group="foo" />
In any of your vue files:
this.$notify({
group: 'foo',
title: 'Important message',
text: 'Hello user! This is a notification!'
});
For More info visit : https://www.npmjs.com/package/vue-notification
Demo visit: http://vue-notification.yev.io/