import T3CeImage from './T3CeImage.vue' import { mockData } from './T3CeImage.data' const argTypes = { header: { control: { type: 'text' } }, subheader: { control: { type: 'text' } }, headerLayout: { control: { type: 'number' } }, gallery: { control: { type: 'object' } } } export const Standard = (args: any, { argTypes }: { argTypes: any }) => { return { components: { T3CeImage }, props: Object.keys(argTypes), template: `` } } Standard.args = mockData Standard.parameters = { design: { type: 'figma', url: 'https://www.figma.com/file/egwoQef4CmM23GTkco39pw/Design-System-VUE-TYPO3?node-id=510%3A0' } } export default { title: 'T3CeImage', component: T3CeImage, argTypes }