PHP前端开发

vue中怎么引入bootstrap

百变鹏仔 2个月前 (11-14) #bootstrap
文章标签 vue

一、引入jquery

步骤:

1. 安装jquery

$ npm install jquery --save-dev

2.在webpack.config.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' ;