mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
27 lines
492 B
Plaintext
27 lines
492 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
<Meta
|
|
title="Disable a11y addon"
|
|
component={MyComponent} />
|
|
|
|
export const Template = () => ({
|
|
components: { MyComponent },
|
|
template: '<MyComponent />',
|
|
});
|
|
|
|
<Story
|
|
name="NonA11yStory"
|
|
parameters={{
|
|
a11y: {
|
|
// This option disables all a11y checks on this story
|
|
disable: true,
|
|
},
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
``` |