Created
April 14, 2021 19:24
-
-
Save semagarcia/f72f1fde05d105e731db669a2b2830d3 to your computer and use it in GitHub Desktop.
Input => data flow goes from the parent (framework component) to its child (web component)
This file contains 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
<!-- Template: Angular component containing web component --> | |
<div> | |
<h1>I'm an Angular component</h1> | |
<print-full-name | |
name="{{ user.name }}" | |
surname="{{ user.surname }}"> | |
</print-full-name> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment