Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. //ignoring all imports
  2.  
  3. @component({
  4. selector: 'app-child',
  5. template: './child.component.html'
  6. })
  7.  
  8. import class ChildComponent {
  9.  
  10. //logic not of use
  11.  
  12. public isData: boolean = false;
  13. }
  14.  
  15. <input type="text" value="xyz" [readonly]="isData">
  16.  
  17. //ignoring all imports
  18.  
  19. <app-child></app-child>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement