euvl / vue-notification

:icecream: Vue.js 2 library for showing notifications
http://vue-notification.yev.io/
MIT License
2.39k stars 213 forks source link

Option to call Notify in Vuex? #217

Closed devzom closed 3 years ago

devzom commented 3 years ago

Is your feature request related to a problem? Please describe. Is there an option to use it within Vuex with globally configured styles and to pass dynamic 'title' to it?

:)

davestewart commented 3 years ago

See the docs:

Or trigger notifications from other files, for example, your router:

import Vue from 'vue'

Vue.notify({
  title: 'Authorization',
  text: 'You have been logged in!'
})
devzom commented 3 years ago

Alright! Thank You for the answer! :)