Last active
November 15, 2016 06:08
-
-
Save RemeJuan/4ff58fd1fcb68d5c997c10976bb5d49b to your computer and use it in GitHub Desktop.
Aurelia: First Impressions #1
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
<template> | |
<!--Importing a component into a template--> | |
<require from="component/component"></require> | |
<require from="other-component/other-component.html"></require> | |
<!--Displaying/rendering the imported component.--> | |
<component></component> | |
<other-component data-bind="stuff"></other-component> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment