Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Last active February 21, 2022 18:24
Show Gist options
  • Save ABooooo/dfc5f5efa30c98d34b4e78c4816c7404 to your computer and use it in GitHub Desktop.
Save ABooooo/dfc5f5efa30c98d34b4e78c4816c7404 to your computer and use it in GitHub Desktop.
// html
<textarea rows="6" [value]="newPost"></textarea> // property is element property written in []
<button (click)="methodName()">Btn text</button>
// ts
export class className {
newPost='predefined text for textarea';
methodName() {
// do something
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment