[Vuejs]-Modal event in boostrapVue with vuex

1👍

You might want to try assigning an ID to the b-modal and then using this.$bvModal.show('view-profile-modal') instead. Make sure you import it properly in your main.js or app.js file using:

import { ModalPlugin } from 'bootstrap-vue'

Vue.use(ModalPlugin)

Leave a comment