Created
February 21, 2022 18:18
-
-
Save ABooooo/cf630f9a69c36ca16f40911976e810ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// html | |
<button (click)="methodName()">Btn text</button> | |
<p>{{ newPost }}</p> | |
// ts | |
export class className { | |
newPost=''; | |
methodName() { | |
this.newPost = 'some text'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment