nextjs出现
Unhandled Runtime Error
Error: Event handlers cannot be passed to Client Component props. <input id="1" type=... className=... defaultChecked=... onChange={function}> ^^^^^^^^^^ If you need interactivity, consider converting part of this to a Client Component.
的错误。他的意思是说这个是交互事件,最好注册成客户端,不要注册成服务端。
在组件最上面加入 "use client", 如