Replies: 1 comment
-
Okay, I'm handling it like this:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A have a modal that asks the user for details of what they want to do next. The choice, by button, then needs to bring up another modal to replace the current choice modal.
$this->email('openModal'...)
- then they become nested. Closing the second takes me back to teh first.$this->closeModal(); $this->emit('openModel', ...)
then the second modal pops up momentarity, then hides itself somewhere, just showing the background mask.What am I missing? Is there a
emit('replaceModal')
or similar? Should I be closing the first modal in a difrernt way?Beta Was this translation helpful? Give feedback.
All reactions