You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
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 modalsService = { createModal, toast: createModal(Toast, 'options', 'longRunningJob'), };
then in my main component i have something like this to show modal: modalsService.toast({message:'some text'}, this.isProcessing)
so, in modal(toast) i have this property passed, but it is not reactive.
Is there any way to detect if property that i passed have changed?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 modalsService = {
createModal,
toast: createModal(Toast, 'options', 'longRunningJob'),
};
then in my main component i have something like this to show modal:
modalsService.toast({message:'some text'}, this.isProcessing)
so, in modal(toast) i have this property passed, but it is not reactive.
Is there any way to detect if property that i passed have changed?
The text was updated successfully, but these errors were encountered: