mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-09 23:26:59 +00:00
21 lines
448 B
TypeScript
21 lines
448 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import MkDigitalClock from './MkDigitalClock.vue';
|
|
const meta = {
|
|
title: 'components/MkDigitalClock',
|
|
component: MkDigitalClock,
|
|
};
|
|
export const Default = {
|
|
render(args, { argTypes }) {
|
|
return {
|
|
components: {
|
|
MkDigitalClock,
|
|
},
|
|
props: Object.keys(argTypes),
|
|
template: '<MkDigitalClock v-bind="$props" />',
|
|
};
|
|
},
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
};
|
|
export default meta;
|