tabs
tabs copied to clipboard
为什么key的类型只有string类型,不可以用number类型吗
export interface Tab extends Omit<TabPaneProps, 'tab'> {
key: string;
label: React.ReactNode;
}
我看像select组件中的value是支持number类型的。