2023-03-19 22:22:14 +09:00
|
|
|
import { Meta, Story } from '@storybook/vue3';
|
|
|
|
|
import MkDrive_file from './MkDrive.file.vue';
|
|
|
|
|
const meta = {
|
|
|
|
|
title: 'components/MkDrive.file',
|
|
|
|
|
component: MkDrive_file,
|
|
|
|
|
};
|
|
|
|
|
export const Default = {
|
|
|
|
|
components: {
|
|
|
|
|
MkDrive_file,
|
|
|
|
|
},
|
2023-03-19 22:31:18 +09:00
|
|
|
template: '<MkDrive_file />',
|
2023-03-19 22:22:14 +09:00
|
|
|
};
|
|
|
|
|
export default meta;
|