vuetify-dialog
vuetify-dialog copied to clipboard
How to use dialog in vuex modules or other not vue files?
Hi, I want to use dialog in vuex use this.$dialog, but $dialog undefined.
Hello !
If you have a non-arrowed method in your store like this :
mutations: {
MY_METHOD (state) {
// You can try the following :
this._vm.$dialog(...)
}
}
this._vm will point to your Vue instance.