vue-modal-dialogs icon indicating copy to clipboard operation
vue-modal-dialogs copied to clipboard

Promisify dialogs in Vue!

Results 7 vue-modal-dialogs issues
Sort by recently updated
recently updated
newest added

I have multiple layouts, each containing a dialog-wrapper with the same name for the popup sidebar. This is necessary because the components do not know which layout they are currently...

I'm trying to create a modal window with reactive components, but I failed. so, i create modalsService wrapper as so: `import { create as createModal } from 'vue-modal-dialogs';` `export const...

Hey, thanks for this plugin. I was wondering if there are any plans on porting this project to Vue3? Cheers.

Hi, is there a way to pass event listeners to dialog component? I'm using `create` and I know I can pass a function to prop as a workaround but for...

After initial load I constantly get this warning on reload. `[modal-dialogs] The wrapper 'default' is already exist. Please make sure that every wrapper has a unique name.` I think there...

I have a project using Vue CLI 2, and it looks like things fail when a hot reload signal is emitted to the browser. I'm opening this issue here as...

There is no default export, so: ```js import ModalDialogs from 'vue-modal-dialogs' ``` does not work, but the following does: ```js import * as ModalDialogs from 'vue-modal-dialogs' ``` This is how...