monkeeShark/packages/frontend/src/components/MkMenu.child.stories.ts

14 lines
288 B
TypeScript
Raw Normal View History

2023-03-19 13:22:14 +00:00
import { Meta, Story } from '@storybook/vue3';
import MkMenu_child from './MkMenu.child.vue';
const meta = {
title: 'components/MkMenu.child',
component: MkMenu_child,
};
export const Default = {
components: {
MkMenu_child,
},
2023-03-19 13:31:18 +00:00
template: '<MkMenu_child />',
2023-03-19 13:22:14 +00:00
};
export default meta;