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: '', parameters: { layout: 'fullscreen', }, }; export default meta;