Pulled ALL skills from 15 source repositories: - anthropics/skills: 16 (docs, design, MCP, testing) - obra/superpowers: 14 (TDD, debugging, agents, planning) - coreyhaines31/marketingskills: 25 (marketing, CRO, SEO, growth) - better-auth/skills: 5 (auth patterns) - vercel-labs/agent-skills: 5 (React, design, Vercel) - antfu/skills: 16 (Vue, Vite, Vitest, pnpm, Turborepo) - Plus 13 individual skills from various repos Mosaic Stack is not limited to coding — the Orchestrator and subagents serve coding, business, design, marketing, writing, logistics, analysis, and more. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
98 lines
2.3 KiB
Markdown
98 lines
2.3 KiB
Markdown
---
|
|
category: Browser
|
|
---
|
|
|
|
# useTextareaAutosize
|
|
|
|
Automatically update the height of a textarea depending on the content.
|
|
|
|
## Usage
|
|
|
|
### Simple example
|
|
|
|
```vue
|
|
<script setup lang="ts">
|
|
import { useTextareaAutosize } from '@vueuse/core'
|
|
|
|
const { textarea, input } = useTextareaAutosize()
|
|
</script>
|
|
|
|
<template>
|
|
<textarea
|
|
ref="textarea"
|
|
v-model="input"
|
|
class="resize-none"
|
|
placeholder="What's on your mind?"
|
|
/>
|
|
</template>
|
|
```
|
|
|
|
::: info
|
|
|
|
It's recommended to reset the scrollbar styles for the textarea element to avoid incorrect height values for large amounts of text.
|
|
|
|
```css
|
|
textarea {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
textarea::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
```
|
|
|
|
:::
|
|
|
|
### With `rows` attribute
|
|
|
|
If you need support for the rows attribute on a textarea element, then you should set the `styleProp` option to `minHeight`.
|
|
|
|
```vue
|
|
<script setup lang="ts">
|
|
import { useTextareaAutosize } from '@vueuse/core'
|
|
|
|
const { textarea, input } = useTextareaAutosize({ styleProp: 'minHeight' })
|
|
</script>
|
|
|
|
<template>
|
|
<textarea
|
|
ref="textarea"
|
|
v-model="input"
|
|
class="resize-none"
|
|
placeholder="What's on your mind?"
|
|
rows="3"
|
|
/>
|
|
</template>
|
|
```
|
|
|
|
## Type Declarations
|
|
|
|
```ts
|
|
export interface UseTextareaAutosizeOptions extends ConfigurableWindow {
|
|
/** Textarea element to autosize. */
|
|
element?: MaybeRef<HTMLTextAreaElement | undefined | null>
|
|
/** Textarea content. */
|
|
input?: MaybeRef<string>
|
|
/** Watch sources that should trigger a textarea resize. */
|
|
watch?: WatchSource | MultiWatchSources
|
|
/** Function called when the textarea size changes. */
|
|
onResize?: () => void
|
|
/** Specify style target to apply the height based on textarea content. If not provided it will use textarea it self. */
|
|
styleTarget?: MaybeRef<HTMLElement | undefined>
|
|
/** Specify the style property that will be used to manipulate height. Can be `height | minHeight`. Default value is `height`. */
|
|
styleProp?: "height" | "minHeight"
|
|
}
|
|
export declare function useTextareaAutosize(
|
|
options?: UseTextareaAutosizeOptions,
|
|
): {
|
|
textarea: Ref<
|
|
HTMLTextAreaElement | null | undefined,
|
|
HTMLTextAreaElement | null | undefined
|
|
>
|
|
input: Ref<string, string>
|
|
triggerResize: () => void
|
|
}
|
|
export type UseTextareaAutosizeReturn = ReturnType<typeof useTextareaAutosize>
|
|
```
|