mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:21:07 +08:00
34 lines
882 B
Plaintext
34 lines
882 B
Plaintext
```html
|
|
<!-- YourComponent.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import YourComponent from './YourComponent.svelte';
|
|
|
|
//👇 Some function to demonstrate the behavior
|
|
function someFunction(valuePropertyA, valuePropertyB) {
|
|
// Makes some computations and returns something
|
|
}
|
|
</script>
|
|
|
|
<!--👇 Creates specific argTypes and automatically infers them when 'options' is defined -->
|
|
|
|
<Meta
|
|
title="YourComponent"
|
|
component={YourComponent}
|
|
argTypes={{
|
|
propertyA: {
|
|
options: ['Item One', 'Item Two', 'Item Three'],
|
|
control: { type: 'select' },
|
|
},
|
|
propertyB: {
|
|
options: ['Another Item One', 'Another Item Two', 'Another Item Three'],
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Template let:args>
|
|
<YourComponent {...args} someProperty={someFunction(args.propertyA, args.propertyB)} />
|
|
</Template>
|
|
``` |