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