Created
August 9, 2017 09:20
-
-
Save nicobytes/4807a44d9ee14dd4c760e586991002be to your computer and use it in GitHub Desktop.
inputs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //component ts | |
| @Component({ | |
| selector: 'your-component', | |
| templateUrl: 'your-component.html', | |
| }) | |
| export class YourComponent { | |
| @Input() photo: string; | |
| constructor( | |
| ) { | |
| } | |
| } | |
| //component html | |
| <img [src]="photo" /> | |
| //page html | |
| <your-component photo="photoUrl"></your-component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment