好拉~即使沒有過多的研究,但還是需要瞭解一下,如何將 bootstrap-vue 給引用進來 !
搭配使用 https://bootstrap-vue.org/docs
//it_state 資料夾 cmd : install bootstrap
npm i bootstrap jquery popper.js bootstrap-vue
//in main.js
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap'
import jQuery from 'jquery'
import BootstrapVue from 'bootstrap-vue'
window.$ = window.jQuery = jQuery
Vue.use(BootstrapVue)
new Vue({
router,
store,
vuetify,
render: h => h(App)
}).$mount('#app')