blob: 6e6cf385f2b61c569e78384a9c471422ece5ea20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import { Meta, StoryObj } from '@storybook/vue3';
import MkMenu_child from './MkMenu.child.vue';
const meta = {
title: 'components/MkMenu.child',
component: MkMenu_child,
} satisfies Meta<typeof MkMenu_child>;
export const Default = {
render(args, { argTypes }) {
return {
components: {
MkMenu_child,
},
props: Object.keys(argTypes),
template: '<MkMenu_child v-bind="$props" />',
};
},
parameters: {
layout: 'centered',
},
} satisfies StoryObj<typeof MkMenu_child>;
export default meta;
|