React-Bootstrap是一款基于ReactJS对Bootstrap进行封装的库,一个可重用的前端组件库,可通过“cnpm install react-bootstrap --save”命令进行安装。
React-Bootstrap是什么
React-Bootstrap是一款基于ReactJS对Bootstrap进行封装的库,是一个是可重用的前端组件库。
react-bootstrap的样式组件依赖于bootstrap。
官网:https://react-bootstrap.github.io
安装React-Bootstrap的方法
使用以下命令进行安装
cnpm install react-bootstrap --save //或者 $ bower install react react-bootstrap
使用:
写内容组件要用到react-bootstrap的组件的时候,要从react-bootstrap中导入所需的组件;
例如:在组件component.js中,要用到React-bootstrap的Button组件,具体写法如下:
import React from‘react’; import {Button} from ‘react-bootstrap’; export default class MyComponent React.Component{ constructor(props){ super(props); } render(){ return( <div> <Button bsStyle="default"></Button> </div> ); } };
在index.ejs的模板头部,引入bootstrap.css。在dist文件夹下放入bootstrap.css源码。
样式表
由于 React-Bootstrap 不依赖于具体的 Bootstrap 版本, 所以发行包中不包括任何 css。尽管使用这些组件时,一些样式表是必须的。 如何选择和加载 bootstrap 样式文件由使用者决定,最简单的办法就是从 CDN 上加载最新的样式表文件。
<!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css">
更多编程相关知识,请访问:编程学习网站!!
以上是React-Bootstrap是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!