I'd like the v-textarea to grow and shrink according to how much text is placed in it, but I'm having this issue below with a v-textarea that is inside a v-layout that is closed (not expanded).
using this
<v-flex md8 px-1 offset-md2>
<v-textarea v-model="comments" @input="inputComments" rows="1" auto-grow :disabled="!editMode"></v-textarea>
</v-flex>
the field only shows 1 row and doesn't auto-grow. You can see the 2nd line is NOT showing completely.
and when I remove "rows="1" then this is what I see (extra white space) because the default rows is 5 for a textarea
Isn't there a way to get it to autogrow based on the lines of text or maybe re auto-grow it after it is expanded? I thought that was how it was supposed to work, but I could be wrong!
FYI - this textarea is in a hidden section, it only displays if the section is expanded. The other textareas I have on the page (not in a expanded area) show/auto-grow just fine!

