Hi guys Im having problem with Vue js, Im trying to make tabs with modal, so that each tab has its own modal... But for some reason if I open 3 tabs and on 1st tab open dialog, then close that 1st tab, the dialog will stay open on the next tab :(
Here is my Issue in gif:

And here is code Im using : CodeSandbox fiddle
Thanx in advance :)
Vishwa Bhat
Technology Enthusiast
I dont think
shouldShowModalinModalDialog.vuekeeps in sync with changes happening in props.What you've done assigns
this.$props.showas the default value tothis.$data.shouldShowModalduring component initialization. What I'd suggest is to makeshouldShowModalas computed property that returnsthis.$props.showso that your modal visibility will be in sync with props.