storybook/docs/snippets/vue/component-story-with-accessibility.mdx-3.mdx.mdx
2022-07-07 18:50:21 +01:00

57 lines
1.0 KiB
Plaintext

```md
<!-- Button.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import Button from './Button.vue';
<Meta
title="Accessibility testing"
component={Button}
argTypes={{
backgroundColor: {
control: {
type: 'color',
}
}
}} />
<!--
👇 Render functions are a framework specific feature to allow you control on how the component renders.
See https://storybook.js.org/docs/7.0/vue/api/csf
to learn how to use render functions.
-->
## This is an accessible story
<Story
name="Accessible"
args={{
primary: false,
label: 'Button'
}}
render={(args) => ({
components: { MyButton },
setup() {
return { args };
},
template: '<Button v-bind="args" />',
})} />
## This is not
<Story
name="Inaccessible"
args={{
primary: false,
label: 'Button',
backgroundColor: 'red'
}}
render={(args) => ({
components: { MyButton },
setup() {
return { args };
},
template: '<Button v-bind="args" />',
})} />
```