摘要: import React, { useState } from 'react'; const Child = (props) => { console.log(props, 'child-props'); return <input type="number" />; }; const Parent 阅读全文
posted @ 2021-10-28 15:12 卓扬 阅读(57) 评论(0) 推荐(0) 编辑