[Vuejs]-Can’t catch ‘hidden.bs.modal’ in vuejs

-2👍

you can catch it like this

<div ref="myModalRef"></div>

$(this.$refs.myModalRef).modal('hide')

or

$(this.$refs.myModalRef).modal('show')

but it will give you console.log error because its using JQuery…. still i didn’t find ana answer to it but i will tell you when i know

👤Dabees

Leave a comment