@youcan/ui-vue3
Version:
YouCan Vue3 components library
20 lines (16 loc) • 374 B
text/typescript
import type { Meta } from '@storybook/vue3';
import Note from './Note.vue';
const meta: Meta<typeof Note> = {
title: 'Application/Note',
component: Note,
tags: ['application', 'display', 'note'],
argTypes: {
icon: { table: { disable: true } },
content: { table: { disable: true } },
},
};
export default meta;
export const Default = {
args: {
},
};