2023-03-21 13:12:30 +09:00

22 lines
470 B
TypeScript

import { Meta, StoryObj } from '@storybook/vue3';
import index_ from './index.vue';
const meta = {
title: 'pages/gallery/index',
component: index_,
} satisfies Meta<typeof index_>;
export const Default = {
render(args, { argTypes }) {
return {
components: {
index_,
},
props: Object.keys(argTypes),
template: '<index_ v-bind="$props" />',
};
},
parameters: {
layout: 'fullscreen',
},
} satisfies StoryObj<typeof index_>;
export default meta;