I created a Quasar dialog component to show errors to users in the form of popups. I maintain a variable for q-dialog to show up (i.e., <q-dialog v-model="show">, where show is a reactive and set to true in setup()). I use this component from another component as such <Error v-if="movieChoiceStatus.error" :textContent="movieChoiceStatus.errorText" :show="true"/> where movieChoiceStatus is a reactive as well. The problem is Error component shows up only once. It won't pop after initial one. Does anybody have an idea?