Apidog Markdown
  1. Components
Apidog Markdown
  • Welcome to Apidog Markdown
  • Basic Syntax and Features
    • Title and Text
    • Lists & Tables
    • Image
    • Video
    • Code
    • Icon
    • Tailwind CSS Supports
  • Components
    • Admonition
    • Hightlight
    • Accordion
    • AccordionGroup
    • Multiple Columns
    • Card
    • Card Group
    • Image Frame
    • Step
    • Tab
    • Tip
    • Copy to Clipboard
    • Text Hover Tip
    • Text Drawing - Mermaid
      • Graph
      • Sequence Diagram
      • Class Digram
      • State Diagram
      • Entity Relationship Diagram
      • Journey Map
      • Gantt Chart
      • Pie Chart
    • Formula
      • Inline Formula
      • Block-level Formula
  • Other Questions
    • Shortcuts
  1. Components

Tab

The Tabs component allows you to combine multiple Tab components together, where different tabs can be switched.

Example Effect#

First Tab
Second Tab
Third Tab
This is the content of the first tab.
Code:
<Tabs>
    <Tab title="First Tab">
        This is the content of the first tab.
    </Tab>
    <Tab title="Second Tab">
        This is the content of the second tab.
    </Tab>
        <Tab title="Third Tab">
        This is the content of the third tab.
    </Tab>
</Tabs>
You can add any number of tabs. The content of the Tab component follows Markdown syntax.

Parameter Description#

Tab
title
string 
Title
required
Define the single tab title
Previous
Step
Next
Tip
Built with