I dont think shouldShowModal in ModalDialog.vue keeps in sync with changes happening in props.
What you've done assigns this.$props.show as the default value to this.$data.shouldShowModal during component initialization. What I'd suggest is to make shouldShowModal as computed property that returns this.$props.show so that your modal visibility will be in sync with props.