mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
28 lines
671 B
Plaintext
28 lines
671 B
Plaintext
```js
|
|
// Histogram.stories.js
|
|
|
|
import Histogram from './Histogram.vue';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Histogram',
|
|
component: Histogram,
|
|
};
|
|
|
|
const Template = (args, { argTypes }) => ({
|
|
components: { Histogram },
|
|
props: Object.keys(argTypes),
|
|
template: '<Histogram v-bind="$props" v-on="$props" />',
|
|
});
|
|
|
|
export const Default = Template.bind({});
|
|
Default.args = {
|
|
dataType: 'latency',
|
|
showHistogramLabels: true,
|
|
histogramAccentColor: '#1EA7FD',
|
|
label: 'Latency distribution',
|
|
};
|
|
``` |