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