[Vuejs]-My modal component in Vue3 doesn't remount on page change

0👍

Already resolved. I discovered that the approval component was unmounted during page change including its child. When it remounts on page change, its child components (like the signature modal) doesn’t remount. So i used the v-if in signature modal and change the value of the variable in the v-if through onMounted and onUnmounted lifecycle hooks of the Approval component

Leave a comment