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