shadcn-vue/apps/www/registry/new-york/example/TextareaWithButton.vue
2024-11-21 11:52:31 +08:00

12 lines
313 B
Vue

<script setup lang="ts">
import { Button } from '@/lib/registry/new-york/ui/button'
import { Textarea } from '@/lib/registry/new-york/ui/textarea'
</script>
<template>
<div class="grid w-full gap-2">
<Textarea placeholder="Type your message here." />
<Button>Send message</Button>
</div>
</template>