mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
37 lines
746 B
Plaintext
37 lines
746 B
Plaintext
```html
|
|
<!-- Button.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
//👇 Some function to demonstrate the behavior
|
|
function someFunction(someValue) {
|
|
return `i am a ${someValue}`;
|
|
}
|
|
</script>
|
|
|
|
<!--👇 Creates specific argTypes -->
|
|
<Meta
|
|
title="Button"
|
|
component={Button}
|
|
argTypes={{
|
|
backgroundColor: { control: 'color' },
|
|
}}
|
|
/>
|
|
|
|
<!-- 👇 Assigns the function result to a variable and pass it as a prop into the component -->
|
|
<Template let:args>
|
|
<Button {...args} label={someFunction(args.label)} />
|
|
</Template>
|
|
|
|
<Story
|
|
name="ExampleStory"
|
|
args={{
|
|
primary: true,
|
|
size:'small',
|
|
label: 'Button',
|
|
}}
|
|
/>
|
|
``` |