0๐
You could add a v-if="showModal"
in your first modal div. And set this.showModal to true when the modal should be visible and set it to false when you want to hide the modal this.showModal = false
0๐
I have able to hide the popup by adding this in the addBtn function
$('#staticBackdrop').modal('hide');
Source:stackexchange.com