[Vuejs]-Vue.JS creating Menu with bootstrap

0👍

As bootStrap was loaded i needed to import

import BootstrapVue from "bootstrap-vue"
import "bootstrap/dist/css/bootstrap.min.css"
import "bootstrap-vue/dist/bootstrap-vue.css"

Vue.use(BootstrapVue)

into index.js instead of main.js

Leave a comment