angular-cli 使用 bootstrap

第一步,我们使用npm安装jquery
npm install --save jquery
第二步,我们使用npm安装bootstrap
npm install --save bootstrap

第三步,打开angualr.json文件

"styles": [
"src/styles.css",
"node_modules/bootstrap/dist/css/bootstrap.css"
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js"
]

你可能感兴趣的:(angular-cli 使用 bootstrap)