2023-03-20 16:07:13 +02:00
|
|
|
import { Meta, StoryObj } from '@storybook/vue3';
|
2023-03-21 06:12:30 +02:00
|
|
|
import note_ from './note.vue';
|
2023-03-19 15:22:14 +02:00
|
|
|
const meta = {
|
|
|
|
title: 'pages/note',
|
2023-03-21 06:12:30 +02:00
|
|
|
component: note_,
|
|
|
|
} satisfies Meta<typeof note_>;
|
2023-03-19 15:22:14 +02:00
|
|
|
export const Default = {
|
2023-03-20 09:13:07 +02:00
|
|
|
render(args, { argTypes }) {
|
|
|
|
return {
|
|
|
|
components: {
|
2023-03-21 06:12:30 +02:00
|
|
|
note_,
|
2023-03-20 09:13:07 +02:00
|
|
|
},
|
|
|
|
props: Object.keys(argTypes),
|
2023-03-21 06:12:30 +02:00
|
|
|
template: '<note_ v-bind="$props" />',
|
2023-03-20 09:13:07 +02:00
|
|
|
};
|
2023-03-19 15:22:14 +02:00
|
|
|
},
|
2023-03-20 07:56:34 +02:00
|
|
|
parameters: {
|
|
|
|
layout: 'fullscreen',
|
|
|
|
},
|
2023-03-21 06:12:30 +02:00
|
|
|
} satisfies StoryObj<typeof note_>;
|
2023-03-19 15:22:14 +02:00
|
|
|
export default meta;
|