From 53ec429ded47090388602019e8fde8dffb07ac38 Mon Sep 17 00:00:00 2001 From: Ken van der Eerden Date: Sat, 28 Feb 2026 13:03:09 +0100 Subject: [PATCH] Expose autoResize in Textarea.vue Be able to call autoResize without forcefully triggering an Input (which could have other functional implications e.g. making api requests on input events). --- src/runtime/components/Textarea.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runtime/components/Textarea.vue b/src/runtime/components/Textarea.vue index 45b641cbce..b69d9f1351 100644 --- a/src/runtime/components/Textarea.vue +++ b/src/runtime/components/Textarea.vue @@ -205,7 +205,8 @@ onMounted(() => { }) defineExpose({ - textareaRef + textareaRef, + autoResize })