mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
```md
|
|
<!-- Badge.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Badge from './Badge.vue';
|
|
|
|
<Meta title="MDX/Badge" component={Badge} />
|
|
|
|
<!--
|
|
👇 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.
|
|
-->
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="warning"
|
|
args={{
|
|
status: 'warning',
|
|
label: 'Warning',
|
|
}}
|
|
render={(args) => ({
|
|
components: { Badge },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: '<Badge v-bind="args" />',
|
|
})} />
|
|
<Story
|
|
name="neutral"
|
|
args={{
|
|
status: 'neutral',
|
|
label: 'Neutral',
|
|
}}
|
|
render={(args) => ({
|
|
components: { Badge },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: '<Badge v-bind="args" />',
|
|
})} />
|
|
<Story
|
|
name="error"
|
|
args={{
|
|
status: 'error',
|
|
label: 'Error',
|
|
}}
|
|
render={(args) => ({
|
|
components: { Badge },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: '<Badge v-bind="args" />',
|
|
})} />
|
|
</Canvas>
|
|
``` |