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