mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
38 lines
734 B
Plaintext
38 lines
734 B
Plaintext
```html
|
|
<!-- MyComponent.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport';
|
|
|
|
import MyComponent from "./MyComponent.svelte";
|
|
</script>
|
|
|
|
<Meta
|
|
title="MyComponent"
|
|
component={MyComponent}
|
|
parameters={{
|
|
//👇 The viewports object from the Essentials addon
|
|
viewport: {
|
|
//👇 The viewports you want to use
|
|
viewports: INITIAL_VIEWPORTS,
|
|
//👇 Your own default viewport
|
|
defaultViewport: 'iphone6',
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Template let:args>
|
|
<MyComponent {...args} />
|
|
</Template>
|
|
|
|
<Story
|
|
name="MyStory"
|
|
parameters={{
|
|
viewport: {
|
|
defaultViewport: 'iphonex',
|
|
},
|
|
}}
|
|
/>
|
|
``` |