mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-06 13:46:56 +00:00
13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import flash_edit from './flash-edit.vue';
|
|
const meta = {
|
|
title: 'pages/flash/flash-edit',
|
|
component: flash_edit,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
flash_edit,
|
|
},
|
|
template: '<flash_edit />',
|
|
};
|
|
export default meta;
|