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