blob: a36c99fc32a3dc21e381e8388d85e4aa0aad0242 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import { Meta, Story } from '@storybook/vue3';
import about from './about.vue';
const meta = {
title: 'pages/about',
component: about,
};
export const Default = {
render(args, { argTypes }) {
return {
components: {
about,
},
props: Object.keys(argTypes),
template: '<about v-bind="$props" />',
};
},
parameters: {
layout: 'fullscreen',
},
};
export default meta;
|