mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-13 09:06:57 +00:00
21 lines
478 B
TypeScript
21 lines
478 B
TypeScript
import { Meta, StoryObj } from '@storybook/vue3';
|
|
import explore_ from './explore.vue';
|
|
const meta = {
|
|
title: 'pages/explore',
|
|
component: explore_,
|
|
} satisfies Meta<typeof explore_>;
|
|
export const Default = {
|
|
render(args, { argTypes }) {
|
|
return {
|
|
components: {
|
|
explore_,
|
|
},
|
|
props: Object.keys(argTypes),
|
|
template: '<explore_ v-bind="$props" />',
|
|
};
|
|
},
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
},
|
|
} satisfies StoryObj<typeof explore_>;
|
|
export default meta;
|