随笔分类 -  react

前端组件库---react的基本使用
摘要:1. 下载相关模块包 * 创建package.json ``` npm init ``` * react相关库 package-lock.json ``` npm install react react-dom --save ``` * babel相关库 ``` npm install babel- 阅读全文
posted @ 2018-09-24 09:59 bwwbww 阅读(102) 评论(0) 推荐(0)
摘要:react生命周期 阅读全文
posted @ 2018-09-21 16:29 bwwbww 阅读(95) 评论(0) 推荐(0)
摘要:7.JSX语法 1 <script type="text/babel"> 2 //定义内部标题组件 3 class Welcome extends React.Component { 4 render() { 5 return <h2>Welcome {this.props.name}!</h2>; 阅读全文
posted @ 2018-09-21 16:13 bwwbww 阅读(356) 评论(0) 推荐(0)