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