mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
36 lines
619 B
Plaintext
36 lines
619 B
Plaintext
```md
|
|
<!-- Table.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Table from './Table.vue';
|
|
|
|
<Meta title="Custom Table" component={Table} />
|
|
|
|
export const TableStory = (args) => ({
|
|
components: { Table },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: `
|
|
<Table v-bind="args">
|
|
<tr v-for="(row, idx1) in data">
|
|
<td v-for="(col, idx2) in row">
|
|
{{ data[idx1][idx2] }}
|
|
</td>
|
|
</tr>
|
|
</Table>`,
|
|
});
|
|
|
|
<Story
|
|
name="Numeric"
|
|
args={{
|
|
data: [
|
|
[1, 2, 3],
|
|
[4, 5, 6],
|
|
],
|
|
size: 'large',
|
|
}}>
|
|
{TableStory.bind({})}
|
|
</Story>
|
|
``` |