angular 7使用bootstrap

本文概述

  • 如何安装Angular项目的Bootstrap?
  • 如何在项目中添加bootstrap.css文件?
如何安装Angular项目的Bootstrap?【angular 7使用bootstrap】在命令提示符处运行以下命令:
npm install --save bootstrap@3=> The @3is important!

angular 7使用bootstrap

文章图片
此外,当你使用通过Angular CLI 6创建的项目(通过ng v进行检查)时,将具有angular.json文件而不是.angular-cli.json文件。在该文件中,你仍然需要将Bootstrap添加到styles []数组中,但是路径应为node_modules / bootstrap / dist / css / bootstrap.min.css,而不是../node_modules/bootstrap/dist/css/bootstrap。 min.css。前导../不得包含在内。
angular 7使用bootstrap

文章图片
在这里,我们使用的是Angular 7.2.3版本。
如何在项目中添加bootstrap.css文件?展开节点模块(库根文件夹)
angular 7使用bootstrap

文章图片
转到bootstrap文件夹并展开它。
angular 7使用bootstrap

文章图片
转到dist文件夹并展开dist。
angular 7使用bootstrap

文章图片
展开css,你将找到“ bootstrap.css”。展开bootstrap.css,你将看到bootstrap.min.css
angular 7使用bootstrap

文章图片
打开angular.json文件,然后在样式部分添加bootstrap.min.css。
"styles": [ "node_modules/bootstrap/dist/css/bootstrap.min.css", "src/styles.css" ],

现在已为你的Angular 7项目安装了Bootstrap。你现在可以使用它。

    推荐阅读