[v4] Textarea - Need resizable + set the initial rows + vertical side scroll

Hello,
i have this texture code :

    <f7-row no-gap>
  <f7-col >
    <f7-list no-hairlines-md class="margin-list">
      <f7-list-input
      label="Info"
      type="textarea"
      rows="3"
      resizable
      :value="other_notes"
      @input="other_notes = $event.target.value"
      validate
      ></f7-list-input>
    </f7-list>
  </f7-col>
</f7-row> 

How can i have the minimum rows with vertical, or not, side scroll ?
Many thanks

Just apply required values with CSS min-height and max-height to textarea

rows is not supported

1 Like

many Thanks for reply