Bootstrap有react版的,名称为React-Bootstrap,是一款基于React对Bootstrap进行封装的库,是一个是可重用的前端组件库。
本教程操作环境:Windows7系统、bootstrap4&&react16版本,该方法适用于所有品牌电脑。
(推荐教程:React视频教程、bootstrap教程)
Bootstrap有react版的,名称为React-Bootstrap。
React-Bootstrap是一款基于ReactJS对Bootstrap进行封装的库,是一个是可重用的前端组件库。
官网:https://react-bootstrap.github.io
GitHub:https://github.com/react-bootstrap/react-bootstrap
react-bootstrap的样式组件依赖于bootstrap(如下图是官网的解释)。与 Twitter Bootstrap 一致外观与感受,但通过 Facebook 的 React.js 框架获得更清爽的代码。
react中使用React-bootstrap
1、使用以下命令进行安装
cnpm install react-bootstrap --save //或者 $ bower install react react-bootstrap
2、写内容组件要用到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> ); } };
3、在index.ejs的模板头部,引入bootstrap.css。
4、在dist文件夹下放入bootstrap.css源码。
更多编程相关知识,请访问:编程教学!!
以上是Bootstrap有react版吗的详细内容。更多信息请关注PHP中文网其他相关文章!