puyoskey/packages/frontend/src/components/MkFoldableSection.stories.ts
Acid Chicken (硫酸鶏) 1dfcca7b9c
build(#10336): init
2023-03-19 22:25:06 +09:00

13 lines
318 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import MkFoldableSection from './MkFoldableSection.vue';
const meta = {
title: 'components/MkFoldableSection',
component: MkFoldableSection,
};
export const Default = {
components: {
MkFoldableSection,
},
template: '<MkFoldableSection />',
};
export default meta;