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

Fix import of vue-modal-dialogs in message-box example

Open MarcelRobitaille opened this issue 1 year ago • 0 comments

There is no default export, so:

import ModalDialogs from 'vue-modal-dialogs'

does not work, but the following does:

import * as ModalDialogs from 'vue-modal-dialogs'

This is how it is currently in the Installation section of the README.

MarcelRobitaille avatar Oct 18 '22 10:10 MarcelRobitaille