I have a bootstrap-vue modal and try to close it in my click-function.
this.$refs['my-modal'].hide()
but get the following error:
Property 'hide' does not exist on type 'Vue | Element | Vue[] | Element[]'.
Property 'hide' does not exist on type 'Vue'
I tried with jquery also
$('#my-modal').modal('hide');
With error:
Property 'modal' does not exist on type 'JQuery<HTMLElement>'