当前位置:Gxlcms > 前端框架 > Bootstrap有react版吗

Bootstrap有react版吗

时间:2021-07-01 10:21:17 帮助过:40人阅读

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 框架获得更清爽的代码。

1.png

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版吗的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行