Advertisement
Guest User

Untitled

a guest
Feb 11th, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. export class User {
  2. username: string;
  3. password: string;
  4. }
  5.  
  6. //dentro do export class HomaPage coloca esse codigo
  7.  
  8. user: User = {
  9. username: '',
  10. password: ''
  11. };
  12.  
  13. //usando no html [(ngModel)]="user.username" [(ngModel)]="user.password"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement