blob: 4f5cf2c0942496c1ec6cd1c88cf4ae17ae9912f7 (
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 delete_account from './delete-account.vue';
const meta = {
title: 'pages/settings/delete-account',
component: delete_account,
};
export const Default = {
render(args, { argTypes }) {
return {
components: {
delete_account,
},
props: Object.keys(argTypes),
template: '<delete_account v-bind="$props" />',
};
},
parameters: {
layout: 'fullscreen',
},
};
export default meta;
|