跳转到内容

ReactStandardAttrName

ReactStandardAttrName = Exclude<Extract<keyof HTMLAttributes<unknown>, string>, `on${string}`>

Defined in: packages/react/src/util/component-types.ts:134

attributes 的标准名: 直接借 React 自带的 HTMLAttributes, 摘掉 onXxx(那是 events 的地盘, 不属于 attributes)。