mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:41:06 +08:00
111 lines
2.3 KiB
Markdown
111 lines
2.3 KiB
Markdown
```ts filename="MyComponent.stories.ts" renderer="angular" language="ts"
|
|
import type { Meta } from '@storybook/angular';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
const meta: Meta<MyComponent> = {
|
|
component: MyComponent,
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
toc: {
|
|
disable: true, // 👈 Disables the table of contents
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
```
|
|
|
|
```js filename="MyComponent.stories.js|jsx" renderer="common" language="js"
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
toc: {
|
|
disable: true, // 👈 Disables the table of contents
|
|
},
|
|
},
|
|
},
|
|
};
|
|
```
|
|
|
|
```ts filename="MyComponent.stories.ts|tsx" renderer="common" language="ts-4-9"
|
|
// Replace your-framework with the name of your framework
|
|
import type { Meta } from '@storybook/your-framework';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
const meta = {
|
|
component: MyComponent,
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
toc: {
|
|
disable: true, // 👈 Disables the table of contents
|
|
},
|
|
},
|
|
},
|
|
} satisfies Meta<typeof MyComponent>;
|
|
|
|
export default meta;
|
|
```
|
|
|
|
```ts filename="MyComponent.stories.ts|tsx" renderer="common" language="ts"
|
|
// Replace your-framework with the name of your framework
|
|
import type { Meta } from '@storybook/your-framework';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
const meta: Meta<typeof MyComponent> = {
|
|
component: MyComponent,
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
toc: {
|
|
disable: true, // 👈 Disables the table of contents
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
```
|
|
|
|
```js filename="MyComponent.stories.js" renderer="web-components" language="js"
|
|
export default {
|
|
component: 'my-component',
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
toc: {
|
|
disable: true, // 👈 Disables the table of contents
|
|
},
|
|
},
|
|
},
|
|
};
|
|
```
|
|
|
|
```ts filename="MyComponent.stories.ts" renderer="web-components" language="ts"
|
|
import type { Meta } from '@storybook/web-components';
|
|
|
|
const meta: Meta = {
|
|
component: 'my-component',
|
|
tags: ['autodocs'],
|
|
parameters: {
|
|
docs: {
|
|
toc: {
|
|
disable: true, // 👈 Disables the table of contents
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
```
|
|
|