23 lines
691 B
Vue
23 lines
691 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<{
|
|
placeholder?: string
|
|
class?: HTMLAttributes['class']
|
|
}>()
|
|
|
|
const model = defineModel<string>()
|
|
</script>
|
|
|
|
<template>
|
|
<textarea
|
|
v-model="model"
|
|
:placeholder="props.placeholder"
|
|
:class="cn(
|
|
'flex min-h-[80px] w-full rounded-lg border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 resize-none',
|
|
props.class
|
|
)"
|
|
/>
|
|
</template>
|