mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
34 lines
572 B
Plaintext
34 lines
572 B
Plaintext
```html
|
|
<!-- Button.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import Button from './Button.svelte';
|
|
</script>
|
|
|
|
<Meta
|
|
title="Button"
|
|
component={Button}
|
|
argTypes={{
|
|
label: { control: 'text' },
|
|
primary: { control: 'boolean' },
|
|
}}
|
|
/>
|
|
|
|
<!--👇 We create a “template” of how args map to rendering -->
|
|
|
|
<Template let:args>
|
|
<Button {...args} />
|
|
</Template>
|
|
|
|
<!-- 👇 Each story then reuses that template -->
|
|
|
|
<Story
|
|
name='Primary'
|
|
args={{
|
|
primary: true,
|
|
label: 'Button'
|
|
}}
|
|
/>
|
|
``` |