Notifications
We restyled the classic Bootstrap Alert and gave it a more attractive look. We used [Vue-notifyjs](https://github.com/cristijora/vue-notifyjs) to easily add notifications from anywhere within the app.
Usage
To use Vue-notifyjs, you have to import it and declare it as a plugin.
import VueNotify from 'vue-notifyjs'
import 'vue-notifyjs/themes/default.css'
Vue.use(VueNotify)
This is done inside src/main.js
file.
TIP
Vue-notifyjs has a default list
transition which you can change through css in order to achieve your desired notification transition
Trigger notificaitons with custom transition
TIP
For detailed usage please check out Vue-notifyjs repo