Skip to content
Code Tabs

Code Tabs

Posted Updated
By 廿四1 min Read

Usage

Use code block groups in Markdown files:

vue
<template>
  <div>This is a Vue tab.</div>
</template>
tsx
import React from 'react';

export default function App() {
  return <div>This is a React tab.</div>;
}
Demo
md
::: code-group

```vue [demo.vue]
<template>
  <div>This is a Vue tab.</div>
</template>
```

```tsx [demo.tsx]
import React from 'react';

export default function App() {
  return <div>This is a React tab.</div>;
}
```

:::

Changelog

2026-04-18 23:33
View All Changelog