🚧 Rspress 2.0 文档还在开发中
close

Tabs/Tab

TabsTab 用于在多个内容面板间切换。

用法

代码块

Props

interface TabsProps {
  children: React.ReactNode;
  defaultValue?: string;
  groupId?: string;
  tabPosition?: 'left' | 'center';
}

interface TabProps {
  label: string;
  value?: string;
  children: React.ReactNode;
}

defaultValue 可设置默认选中的标签(匹配 value);groupId 可以让多个 Tabs 共享选择状态;tabPosition 控制标签列表的对齐方式。