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