mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-12 20:34:52 +00:00
21 lines
450 B
TypeScript
21 lines
450 B
TypeScript
import { Meta, StoryObj } from '@storybook/vue3';
|
|
import MkA from './MkA.vue';
|
|
const meta = {
|
|
title: 'components/global/MkA',
|
|
component: MkA,
|
|
} satisfies Meta<typeof MkA>;
|
|
export const Default = {
|
|
render(args, { argTypes }) {
|
|
return {
|
|
components: {
|
|
MkA,
|
|
},
|
|
props: Object.keys(argTypes),
|
|
template: '<MkA v-bind="$props" />',
|
|
};
|
|
},
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
} satisfies StoryObj<typeof MkA>;
|
|
export default meta;
|