vue-cli 引入jQuery,Bootstrap,popper的方法

前端之家收集整理的这篇文章主要介绍了vue-cli 引入jQuery,Bootstrap,popper的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.安装插件

插件 npm install bootstrap --save //bootstrap npm install --save popper.js //popper.js

2.修改build目录下的webpack.base.conf.js配置文件

1)加入webpack对象:var webpack=require('webpack');

2)在module.exports里面加入以下配置: 

webpack.base.conf.js配置文件最终代码

function resolve (dir) {
return path.join(__dirname,'..',dir)
}

module.exports = {
context: path.resolve(__dirname,'../'),entry: {
app: './src/main.js'
},output: {
path: config.build.assetsRoot,filename: '[name].js',publicPath: process.env.NODE_ENV === 'production'
? config.build.assetsPublicPath
: config.dev.assetsPublicPath
},resolve: {
extensions: ['.js','.vue','.json'],alias: {
'vue$': 'vue/dist/vue.esm.js','@': resolve('src'),}
},module: {
rules: [
{
test: /.vue$/,loader: 'vue-loader',options: vueLoaderConfig
},{
test: /.js$/,loader: 'babel-loader',include: [resolve('src'),resolve('test'),resolve('node_modules/webpack-dev-server/client')]
},{
test: /.(png|jpe?g|gif|svg)(\?.)?$/,loader: 'url-loader',options: {
limit: 10000,name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},{
test: /.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.
)?$/,name: utils.assetsPath('media/[name].[hash:7].[ext]')
}
},{
test: /.(woff2?|eot|ttf|otf)(\?.*)?$/,name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
}
}
]
},node: {
// prevent webpack from injecting useless setImmediate polyfill because Vue
// source contains it (although only uses it if it's native).
setImmediate: false,// prevent webpack from injecting mocks to Node native modules
// that does not make sense for the client
dgram: 'empty',fs: 'empty',net: 'empty',tls: 'empty',child_process: 'empty'
},plugins: [
new webpack.optimize.CommonsChunkPlugin('common'),'default']
})
]
}

3.在main.js中把jQuery,bootstrap的js和css通过import引进来

代码如下:

最后重新启动一下:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/30516.html

猜你在找的Vue相关文章