组件参数无效。
示例错误消息:
InvalidComponentArgs:传递给<MyAstroComponent>
组件的参数无效。¥Example error messages:
InvalidComponentArgs: Invalid arguments passed to<MyAstroComponent>
component.
什么地方出了错?
标题部分 什么地方出了错?¥What went wrong?
Astro 组件无法通过函数调用手动渲染,例如 Component()
或 {items.map(Component)}
。首选组件语法 <Component />
或 {items.map(item => <Component {...item} />)}
。
¥Astro components cannot be rendered manually via a function call, such as Component()
or {items.map(Component)}
. Prefer the component syntax <Component />
or {items.map(item => <Component {...item} />)}
.