vuetify-dialog icon indicating copy to clipboard operation
vuetify-dialog copied to clipboard

How to use dialog in vuex modules or other not vue files?

Open MoondanceZ opened this issue 5 years ago • 1 comments

Hi, I want to use dialog in vuex use this.$dialog, but $dialog undefined.

MoondanceZ avatar Apr 26 '21 09:04 MoondanceZ

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.

laurent-brisbois avatar May 17 '21 09:05 laurent-brisbois