美文网首页
组件的诞生

组件的诞生

作者: kzc爱吃梨 | 来源:发表于2020-04-12 10:37 被阅读0次

    代码:http://jsbin.com/nezocuk/2/edit?html,js,output

    1. 简单组件用函数
      1. 第一个参数就是 props
    2. 复杂组件用 class
      1. constructor(props) super(props)
      2. this.state
      3. this.setState()
      4. render

    </article>

    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width">
      <script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.4.0/umd/react.production.min.js"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.4.0/umd/react-dom.production.min.js"></script>
      <title>JS Bin</title>
    </head>
    <body>
      <div id="root"></div>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:组件的诞生

          本文链接:https://www.haomeiwen.com/subject/owkvmhtx.html