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