在 hooks 中使用 function 定义还是 const 定义合适呢?
一、 function handle() { console.log(1) } export default handle 二、 const handle = () => { console.log(1) } export default handle
一、 function handle() { console.log(1) } export default handle 二、 const handle = () => { console.log(1) } export default handle
2021-10-17
举报