mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-28 12:53:08 +02:00
21 lines
403 B
TypeScript
21 lines
403 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import _empty_ from './_empty_.vue';
|
|
const meta = {
|
|
title: 'pages/_empty_',
|
|
component: _empty_,
|
|
};
|
|
export const Default = {
|
|
render(args, { argTypes }) {
|
|
return {
|
|
components: {
|
|
_empty_,
|
|
},
|
|
props: Object.keys(argTypes),
|
|
template: '<_empty_ v-bind="$props" />',
|
|
};
|
|
},
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
},
|
|
};
|
|
export default meta;
|