2023-03-19 14:22:14 +01:00
|
|
|
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 />',
|
2023-03-20 06:56:34 +01:00
|
|
|
parameters: {
|
|
|
|
layout: 'fullscreen',
|
|
|
|
},
|
2023-03-19 14:22:14 +01:00
|
|
|
};
|
|
|
|
export default meta;
|