Here is the code I am working with:
<input type="checkbox" name="vehicle" value="Bike" >
<button class="pull-left" (click)='openup()' [Disabled]='button'>Delete</button>
This is the corresponding TypeScript code:
button:any = false;
openup(){
this.button = false;
}
Despite following this process, I am not getting the desired result.
If anyone has any suggestions or solutions, please let me know. Thank you!