import type { Meta, StoryObj } from '@storybook/vue3'; import { ref } from 'vue'; import { TextArea } from '~/components'; type Story = StoryObj; const meta: Meta = { title: 'Application/TextArea', component: TextArea, tags: ['application', 'input', 'Input', 'textarea'], argTypes: { modelValue: { table: { disable: true } }, }, args: { error: false, }, }; export const Default: Story = { render: args => ({ components: { TextArea }, setup() { const value = ref(''); return { args, value }; }, template: '