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