mirror of
https://codeberg.org/yeentown/barkey.git
synced 2026-01-10 22:48:32 +00:00
21 lines
486 B
TypeScript
21 lines
486 B
TypeScript
import { Meta, StoryObj } from '@storybook/vue3';
|
|
import timeline_ from './timeline.vue';
|
|
const meta = {
|
|
title: 'pages/timeline',
|
|
component: timeline_,
|
|
} satisfies Meta<typeof timeline_>;
|
|
export const Default = {
|
|
render(args, { argTypes }) {
|
|
return {
|
|
components: {
|
|
timeline_,
|
|
},
|
|
props: Object.keys(argTypes),
|
|
template: '<timeline_ v-bind="$props" />',
|
|
};
|
|
},
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
},
|
|
} satisfies StoryObj<typeof timeline_>;
|
|
export default meta;
|