标签:创建 cto 生命周期 函数 rop 属性 方式 业务 删除
import React from "react"; function Hello(props) { return ( <div> <h1>创建组件方式二-参数-{JSON.stringify(props)}</h1> <p>将组建抽离成单独的问你件</p> </div> ); }
import React from "react"; export default class Hello2 extends React.Component { constructor(props1) { super(props1); console.log(props1); this.state = { msg: "这是Hello2组件的私有msg数据", info: "哈哈哈", }; } render() { return ( <div> 创建组件的第二种方式:这是使用class创建的组件 <h1>外界传过来的数据是:{JSON.stringify(this.props)}</h1> </div> ); } }
标签:创建 cto 生命周期 函数 rop 属性 方式 业务 删除
原文地址:https://www.cnblogs.com/wangyfax/p/13167558.html