mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
25 lines
715 B
Plaintext
25 lines
715 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', }} />
|
|
```
|