Advertisement
Ahlushko

Untitled

Jun 19th, 2020
1,530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.44 KB | None | 0 0
  1. <div class="d-flex flex-row">
  2.     <button (click)="e.edit = true" class="btn btn-outline-primary mr-3">Добавити</button>
  3.     <div *ngIf="e.edit" class="d-flex flex-row mr-3">
  4.         <input [(ngModel)]="e.text" class="form-control" type="text" placeholder="Введіть текст">
  5.         <button (click)="lab.create(e)" class="btn btn-outline-primary">+</button>
  6.     </div>
  7.     <button class="btn btn-outline-primary">Видалити все</button>
  8. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement