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