0👍
One issue that pops out is that you are using Vue.use(..)
for components as well as plugins… this will not work. Also When you Vue.use(BootstrapVue)
, you are installing all of BootstrapVue (minus the icons). Which is not what you are expecting.
// Register plugins
Vue.use(IconsPlugin)
Vue.use(LayoutPlugin)
Vue.use(NavbarPlugin)
Vue.use(FormTagsPlugin)
// Register components
Vue.component('BForm', BForm)
Vue.component('BFormInput', BFormInput)
Vue.component('BButton', BButton)
Vue.component('BCard', BCard)
- [Vuejs]-How to scale SVG without rewriting inner source code?
- [Vuejs]-Impossible to build vuejs app – pagination error
Source:stackexchange.com