import type { Meta, StoryObj } from '@storybook/vue3-vite' import VvInputText from '@/components/VvInputText/VvInputText.vue' import { argTypes, defaultArgs } from './InputText.settings' import { Default } from './InputText.stories' const meta: Meta = { title: 'Components/InputText/Slots', component: VvInputText, args: defaultArgs, argTypes, } export default meta type Story = StoryObj export const Before: Story = { ...Default, args: { ...Default.args, before: '
Before
', }, } export const After: Story = { ...Default, args: { ...Default.args, after: '
After
', }, } export const Hint: Story = { ...Default, args: { ...Default.args, hint: 'Hint slot!', }, }