14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
|
import { Meta, Story } from '@storybook/vue3';
|
||
|
import MkUserInfo from './MkUserInfo.vue';
|
||
|
const meta = {
|
||
|
title: 'components/MkUserInfo',
|
||
|
component: MkUserInfo,
|
||
|
};
|
||
|
export const Default = {
|
||
|
components: {
|
||
|
MkUserInfo,
|
||
|
},
|
||
|
template: '<MkUserInfo />',
|
||
|
};
|
||
|
export default meta;
|