1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| <script setup lang="ts">
| import { cn } from '@vben-core/shared/utils';
|
| import { useVModel } from '@vueuse/core';
|
| const props = defineProps<{
| class?: any;
| defaultValue?: number | string;
| modelValue?: number | string;
| }>();
|
| const emits = defineEmits<{
| (e: 'update:modelValue', payload: number | string): void;
| }>();
|
| const modelValue = useVModel(props, 'modelValue', emits, {
| defaultValue: props.defaultValue,
| passive: true,
| });
| </script>
|
| <template>
| <textarea
| v-model="modelValue"
| :class="
| cn(
| 'border-input placeholder:text-muted-foreground focus-visible:ring-ring flex min-h-[60px] w-full rounded-md border bg-transparent px-3 py-2 text-sm shadow-sm focus-visible:outline-none focus-visible:ring-1 disabled:cursor-not-allowed disabled:opacity-50',
| props.class,
| )
| "
| ></textarea>
| </template>
|
|