react hooks 中的事件
html
import React,{ useState } from 'react'const VrCornucopiaHome = () => {
const bbbbb = () => {
alert(1)
}
return (
<button type="button" onClick={ () => bbbbb() }>知道了</button>
)
//写在return后无效
const bbbbb = () => {
alert(1)
}
}
export default VrCornucopiaHome
以上是 react hooks 中的事件 的全部内容, 来源链接: utcz.com/z/383814.html