tabs icon indicating copy to clipboard operation
tabs copied to clipboard

为什么key的类型只有string类型,不可以用number类型吗

Open Mrcxt opened this issue 11 months ago • 0 comments

export interface Tab extends Omit<TabPaneProps, 'tab'> {
    key: string;
    label: React.ReactNode;
}

我看像select组件中的value是支持number类型的。

Mrcxt avatar Feb 08 '25 02:02 Mrcxt