mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
53 lines
1.0 KiB
Plaintext
53 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, { argTypes }) => ({
|
|
props: Object.keys(argTypes),
|
|
components: { Button },
|
|
template: '<Button v-bind="$props" v-on="$props" />',
|
|
})} />
|
|
|
|
## This is not
|
|
|
|
<Story
|
|
name="Inaccessible"
|
|
args={{
|
|
primary: false,
|
|
label: 'Button',
|
|
backgroundColor: 'red'
|
|
}}
|
|
render={(args, { argTypes }) => ({
|
|
props: Object.keys(argTypes),
|
|
components: { Button },
|
|
template: '<Button v-bind="$props" v-on="$props" />',
|
|
})} />
|
|
``` |