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