Bootstrap-vue.js With Laravel Unknown Custom Element: Error
Im new to Vuejs and I get the error unknown custom element - how do i register a custom element - b-alert. I think this element is from bootstrapVue.
Solution 1:
You will have to register the component as in Component registration
import { Alert } from'bootstrap-vue/es/components';
components: { BAlert }
Since all html tags are turned into dashed by camelcase BAlert
= '<b-alert>'
Alertenativly you can also use
components: { 'b-alert':BAlert }
Post a Comment for "Bootstrap-vue.js With Laravel Unknown Custom Element: Error"