mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
28 lines
610 B
Plaintext
28 lines
610 B
Plaintext
```md
|
|
<!-- Histogram.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Histogram from './Histogram.vue';
|
|
|
|
<Meta title="Histogram" component={Histogram} />
|
|
|
|
export const Template = (args, { argTypes }) => ({
|
|
components: { Histogram },
|
|
props: Object.keys(argTypes),
|
|
template: `<Histogram v-bind="$props" v-on="$props" />`,
|
|
});
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="Default"
|
|
args={{
|
|
dataType: 'latency',
|
|
showHistogramLabels: true,
|
|
histogramAccentColor: '#1EA7FD',
|
|
label: 'Latency distribution',
|
|
}} >
|
|
{Template.bind({})}
|
|
</Story>
|
|
</Canvas>
|
|
``` |