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