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