mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
37 lines
811 B
Plaintext
37 lines
811 B
Plaintext
```md
|
|
<!-- Table.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Table from './Table.vue';
|
|
|
|
<Meta title="Custom Table" component={Table} />
|
|
|
|
<!--
|
|
👇 Render functions are a framework specific feature to allow you control on how the component renders.
|
|
See https://storybook.js.org/docs/7.0/vue/api/csf
|
|
to learn how to use render functions.
|
|
-->
|
|
|
|
<Story
|
|
name="Numeric"
|
|
args={{
|
|
data: [
|
|
[1, 2, 3],
|
|
[4, 5, 6],
|
|
],
|
|
size: 'large',
|
|
}}
|
|
render={(args, { argTypes }) =>({
|
|
components: { Table },
|
|
props: Object.keys(argTypes),
|
|
template: `
|
|
<Table v-bind="$props">
|
|
<tr v-for="(row, idx1) in data">
|
|
<td v-for="(col, idx2) in row">
|
|
{{ data[idx1][idx2] }}
|
|
</td>
|
|
</tr>
|
|
</Table>`,
|
|
})} />
|
|
``` |