Bootstrap uses jQuery to fire a custom event hidden.bs.modal, so it's not easy to catch Vue (which, I believe, uses its own events under the hood).
JQuery , Bootstrap native modal, JQuery, . , ref="vuemodal" Bootstrap, - .
new Vue({
el:"#app",
data:{
},
methods:{
doSomethingOnHidden(){
//do something
}
},
mounted(){
$(this.$refs.vuemodal).on("hidden.bs.modal", this.doSomethingOnHidden)
}
})
.