import type { Meta } from '@storybook/vue3-vite' import type { Story } from './AlertGroup.stories' import VvAlertGroup from '@/components/VvAlertGroup/VvAlertGroup.vue' import { argTypes, defaultArgs } from './AlertGroup.settings' import { Default as DefaultStory } from './AlertGroup.stories' const meta: Meta = { title: 'Components/AlertGroup/Slots', component: VvAlertGroup, args: defaultArgs, argTypes, } export default meta export const Default: Story = { ...DefaultStory, args: { ...defaultArgs, modifiers: ['notification'], default: /* html */ ` `, }, } export const Before: Story = { ...DefaultStory, args: { ...defaultArgs, modifiers: ['notification'], before: /* html */ `
`, }, } export const After: Story = { ...DefaultStory, args: { ...defaultArgs, modifiers: ['notification'], after: /* html */ `
`, }, }