我正在使用vue.js,webpack,npm和jQuery。现在,我想在我的项目中包括bootstrap-vue框架。我通过npm遵循了https://bootstrap-vue.js.org/docs的指南,并包含了bootstrap-vue。在启动npm的构建过程时,babel运行时出现了很多错误,例如:
ERROR in ./node_modules/bootstrap-vue/es/utils/popover.class.js
Module not found: Error: Can't resolve '@babel/runtime/helpers/typeof' in
'C:\Users\abdul\WebstormProjects\editor\node_modules\
bootstrap-vue\es\utils'
@ ./node_modules/bootstrap-vue/es/utils/popover.class.js 10:38-78
@ ./node_modules/bootstrap-vue/es/directives/popover/popover.js
@ ./node_modules/bootstrap-vue/es/directives/popover/index.js
@ ./node_modules/bootstrap-vue/es/directives/index.js
@ ./node_modules/bootstrap-vue/es/index.js
@ ./src/main.js
main.js:
import Vue from 'vue'
import App from './App'
import router from './router'
import 'jquery'
import BootstrapVue from 'bootstrap-vue'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.use(BootstrapVue)
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App }
})
对于其他JavaScript文件,我也遇到类似的错误。 Popover.class.js就是其中之一。
我除了使用bootstrap-vue成功运行了构建之外。可选:我可以通过其他方式包括bootstrap-vue。
答案 0 :(得分:0)
安装vue-cli 3并添加bootstrap-vue作为插件
运行以下命令:
npm install -g @vue/cli
vue create project-name
cd project-name
vue add bootstrap-vue
该插件将自动添加并配置。
答案 1 :(得分:0)
创建项目,然后运行以下命令:
npm i bootstrap-vue