monkeeShark/packages/frontend/src/components/MkChart.stories.ts

22 lines
475 B
TypeScript
Raw Normal View History

import { Meta, StoryObj } from '@storybook/vue3';
2023-03-19 13:22:14 +00:00
import MkChart from './MkChart.vue';
const meta = {
title: 'components/MkChart',
component: MkChart,
} satisfies Meta<typeof MkChart>;
2023-03-19 13:22:14 +00:00
export const Default = {
render(args, { argTypes }) {
return {
components: {
MkChart,
},
props: Object.keys(argTypes),
template: '<MkChart v-bind="$props" />',
};
2023-03-19 13:22:14 +00:00
},
parameters: {
layout: 'centered',
},
} satisfies StoryObj<typeof MkChart>;
2023-03-19 13:22:14 +00:00
export default meta;