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