Vue Composition API: Bootstrap Vue - bcgov/healthgateway GitHub Wiki
handleCloseQrModal(): void {
this.$bvModal.hide("big-qr");
}
this.$root.$emit(
"bv::hide::tooltip",
`preview-device-button-${deviceName}`
);
- An alternative to
this.$bvModal.hide()
may be to use a ref and call.hide()
. - An alternative to
this.$root.$emit()
may be to swapv-b-tooltip
for<b-tooltip>
and control the visibility using properties.