We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 506f86b commit 66f43e8Copy full SHA for 66f43e8
src/formkit/PrimeTextarea.vue
@@ -30,6 +30,7 @@ const styleClass = computed(() => (context?.state.validationVisible && !context?
30
:aria-labelledby="attrs.ariaLabelledby"
31
:placeholder="attrs.placeholder"
32
:rows="context.rows ?? 3"
33
+ :auto-resize="attrs.autoResize ?? false"
34
:pt="attrs.pt"
35
:pt-options="attrs.ptOptions"
36
:unstyled="attrs.unstyled ?? false"
src/pages/demo/Textarea.vue
@@ -15,6 +15,7 @@ const schema
15
name: 'name',
16
label: '5 Rows',
17
rows: 5,
18
+ autoResize: true,
19
},
20
{
21
$formkit: 'primeTextarea',
0 commit comments