Skip to content

Instantly share code, notes, and snippets.

@Bachana123
Created January 29, 2020 10:26
Show Gist options
  • Save Bachana123/72858b52114d2294eaa1fc8e5bb3d089 to your computer and use it in GitHub Desktop.
Save Bachana123/72858b52114d2294eaa1fc8e5bb3d089 to your computer and use it in GitHub Desktop.
TEXT AREA automatic height
textArea() {
var height = this.$refs.textArea.scrollHeight
this.$refs.textArea.style.cssText = Math.floor(height/22) >= 2 ? 'height:' + 42 + 'px' : 'height: 22px'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment