vue开发,用npm引入jquery及导入样式
1安装jquerynpm install jquery --save-dev2.在webpack.config.js 添加内容 (2.x后是:webpack.base.conf.js)+ const webpack = require("webpack");module.exports = {entry: './index.js',output: {...
1安装jquery
npm install jquery --save-dev
2.在webpack.config.js 添加内容 (2.x后是:webpack.base.conf.js)
+ const webpack = require("webpack");
module.exports = {
entry: './index.js',
output: {
path: path.join(__dirname, './dist'),
publicPath: '/dist/',
filename: 'index.js'
},
+ plugins: [
new webpack.ProvidePlugin({
jQuery: 'jquery',
$: 'jquery'
})
]
}
3.在入口文件index.js
import $ from 'jquery' ;
4.测试一下是否安装成功,看看能否弹出'123'
<template>
<div>
Hello world!
</div>
</template>
<script>
$(function () {
alert(123);
});
export default {
};
</script>
<style>
</style>
坑一:注意重新跑一遍:npm run dev
导入样式:
安装Bootstrap:npm install bootstrap --save
在‘router / index.js’里面的添加:import '../../node_modules/bootstrap/dist/css/bootstrap.min.css'
这样就成功的将css样式导入进来了。
更多推荐
所有评论(0)