摘要: 函数组件 //1.创建函数式组件 function MyComponent(){ console.log(this); //此处的this是undefined,因为babel编译后开启了严格模式 return <h2>我是用函数定义的组件(适用于【简单组件】的定义)</h2> } //2.渲染组件到 阅读全文
posted @ 2021-06-21 15:08 小不点灬 阅读(3086) 评论(0) 推荐(0) 编辑