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