blob: 8d3e25263a1385f418819113efec00cbe5cc92db (
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 email from './email.vue';
const meta = {
title: 'pages/settings/email',
component: email,
} satisfies Meta<typeof email>;
export const Default = {
render(args, { argTypes }) {
return {
components: {
email,
},
props: Object.keys(argTypes),
template: '<email v-bind="$props" />',
};
},
parameters: {
layout: 'fullscreen',
},
} satisfies StoryObj<typeof email>;
export default meta;
|