storybook/docs/snippets/vue/table-story-fully-customize-controls.mdx-3.mdx.mdx
2021-11-04 21:07:00 +00:00

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>
```