Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!-- De este no se queja -->
  2. <mat-dialog-content>
  3. <mat-form-field appearance="legacy">
  4. <input matInput type="text" [(ngModel)]="data.name" placeholder="Nombre del juego" required>
  5. </mat-form-field>
  6. <br>
  7.  
  8. <!-- De este SÍ se queja -->
  9. <mat-form-field>
  10. <mat-label>Prueba</mat-label>
  11. <mat-select [(ngModel)]="data.teamMode">
  12. <mat-option value="1">Equipos</mat-option>
  13. <mat-option value="2">Individual</mat-option>
  14. </mat-select>
  15. </mat-form-field>
  16. </mat-dialog-content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement