根据BootstrapVue官方介绍,手写需要安装bootstrap-vue依赖,但是官方没有说明其需要依赖jQuery,以及postcss,以及postcss-loader,所以也必须安装jQuery。
1、安装bootstrap-vue、jQuery、postcss、postcss-loader
yarn add bootstrap-vue
yarn add jquery
yarn add postcss
yarn add postcss-loader
2、在nuxt.config.js中配置使用bootstrap-vue
module.exports = {
modules: ['bootstrap-vue/nuxt']
}
之后引入UI组件既可以使用。