1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-16 23:58:59 +09:00
cherrypick/packages/frontend/src/components/MkUserSetupDialog.FontSize.stories.impl.ts

32 lines
615 B
TypeScript

/* eslint-disable @typescript-eslint/explicit-function-return-type */
import { StoryObj } from '@storybook/vue3';
import MkUserSetupDialog_FontSize from './MkUserSetupDialog.FontSize.vue';
export const Default = {
render(args) {
return {
components: {
MkUserSetupDialog_FontSize,
},
setup() {
return {
args,
};
},
computed: {
props() {
return {
...this.args,
};
},
},
template: '<MkUserSetupDialog_FontSize v-bind="props" />',
};
},
args: {
},
parameters: {
layout: 'centered',
},
} satisfies StoryObj<typeof MkUserSetupDialog_FontSize>;