2023-03-21 17:25:17 +02:00
|
|
|
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
|
|
|
/* eslint-disable import/no-default-export */
|
2023-03-20 16:07:13 +02:00
|
|
|
import { Meta, StoryObj } from '@storybook/vue3';
|
2023-03-19 15:22:14 +02:00
|
|
|
import theme_editor from './theme-editor.vue';
|
|
|
|
const meta = {
|
|
|
|
title: 'pages/theme-editor',
|
|
|
|
component: theme_editor,
|
2023-03-20 16:07:13 +02:00
|
|
|
} satisfies Meta<typeof theme_editor>;
|
2023-03-19 15:22:14 +02:00
|
|
|
export const Default = {
|
2023-03-20 09:13:07 +02:00
|
|
|
render(args, { argTypes }) {
|
|
|
|
return {
|
|
|
|
components: {
|
|
|
|
theme_editor,
|
|
|
|
},
|
|
|
|
props: Object.keys(argTypes),
|
|
|
|
template: '<theme_editor v-bind="$props" />',
|
|
|
|
};
|
2023-03-19 15:22:14 +02:00
|
|
|
},
|
2023-03-20 07:56:34 +02:00
|
|
|
parameters: {
|
|
|
|
layout: 'fullscreen',
|
|
|
|
},
|
2023-03-20 16:07:13 +02:00
|
|
|
} satisfies StoryObj<typeof theme_editor>;
|
2023-03-19 15:22:14 +02:00
|
|
|
export default meta;
|