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