<b-button
id="show-btn"
@click="$bvModal.show('bv-modal-example')"
>
Open Modal
</b-button>
<b-modal id="bv-modal-example">Hello From My Modal!</b-modal>
Using Vue version 2.6.10
Bootstrap is successfully installed and configured in App.js
import BootstrapVue from 'bootstrap-vue';
Vue.use(BootstrapVue);
An issue arose where an error occurred due to the undefined property 'show' when attempting to open the modal.
I am looking for guidance on what else needs to be installed or configured for BoostrapVue Modal to function as intended?
Thank you in advance!