mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
47 lines
809 B
Plaintext
47 lines
809 B
Plaintext
```html
|
|
<!--Table.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import Table from './Table.svelte';
|
|
</script>
|
|
|
|
<Meta
|
|
title="Table"
|
|
component={Table}
|
|
argTypes={{
|
|
size: {
|
|
control: {
|
|
type: 'select',
|
|
options: ['small', 'medium', 'large'] },
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Template let:args>
|
|
<Table {...args}>
|
|
<tbody>
|
|
{#each args.data as row}
|
|
<tr>
|
|
{#each row as col}
|
|
<td>{col}</td>
|
|
{/each}
|
|
</tr>
|
|
{/each}
|
|
</tbody>
|
|
</Table>
|
|
</Template>
|
|
|
|
<!-- 👇 The data arg is for the story component and the remaining args get passed to the Table component -->
|
|
<Story
|
|
name="Numeric"
|
|
args={{
|
|
data: [
|
|
[1, 2, 3],
|
|
[4, 5, 6],
|
|
],
|
|
size: 'large',
|
|
}}
|
|
/>
|
|
``` |