1.首先使用导入jquery
npm install jquery -s
在项目下的文件夹build中的webpack.base.conf.js文件,module.export 中加入
plugins: [
new webpack.optimize.CommonsChunkPlugin('common.js'),
new webpack.ProvidePlugin({
jQuery: "jquery",
$: "jquery"
})
]
2.npm安装boostrap
npm install bootstrap -s
在路由里面引入 booptstrap
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap/dist/js/bootstrap.js'