I call Bootstrap modal in function in vue.js component, and I want to call function after close modal, but I lost scope
this.myFunction() // it works here
$('#app-modal-warning').on('hidden.bs.modal', function () {
this.myFunction() // it doesn't work here
})
$('#app-modal-warning').modal('show')
Error: this.myFunction is not a function