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