import { Component, OnInit } from '@angular/core'; @Component({ selector: 'textarea-autosize', templateUrl: './demo-textarea.component.html', }) export class DemoTextareaComponent implements OnInit { longText = ''; longText1 = ''; constructor() { } ngOnInit(): void { } setLongText() { this.longText1 = `Long and well reasoned argument about talking about long and well reasoned arguments and how they long and well reasoned and argue things of value. Maybe. Honestly, though, this is just long. Long enough, in any case.`; } }