[Vuejs]-How to close bootstrap popup on submit in VUE

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');

Leave a comment