Angular Autosize TextArea
Angular Autosize TextArea angular2-autosize is an Angular2 directive that automatically adjusts textarea height to fit content.
It adjusts the textarea height automatically to any text input, or changes to the model bound to the textarea.
Installation:
npm install angular2-autosize
Use Example:
Add the declaration to your @NgModule:
import {Autosize} from 'angular2-autosize';
...
@NgModule({
declarations: [
Autosize
]
})