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