[Vuejs]-How to cacth 'hidden.bs.modal' in vuejs?

0👍

You don’t need parenthesis after doSomething. You want to pass function itself, not a result of it

 mounted() {
     $(this.$refs.my_modal).on('hidden.bs.modal', this.doSomething);
 },

Leave a comment