- 安装插件
npm install jquery --save
npm install bootstrap --save
npm install popper.js --save
如果cli版本小于v3:
- 配置
webpack.base.conf.js
//在顶部添加
const webpack = require('webpack')
//在module.exports = {}末尾添加下面代码
module.exports = {
...
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
]
}
但是在Vue-cli v3
的版本中需要使用下面的方法
在根目录中添加文件vue.config.js
,然后写入下面配置
const webpack = require('webpack')
module.exports = {
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
]
}
}
-
main.js
中添加
import $ from 'jquery'
import 'bootstrap'
- 测试
jquery
//在vue文件中添加测试代码
<script>
$(function () {
alert('234')
})
export default {
name: 'App'
}
</script>
- 测试
bootstrap
<template>
<div class="container">
<div class="row">
<div class="col-md-6">
<button class="btn btn-primary">测试按钮</button>
</div>
</div>
</div>
</template>