Skip to content

Instantly share code, notes, and snippets.

@charlespockert
Created August 23, 2015 14:25
Show Gist options
  • Save charlespockert/92d8abffcd79a6f2ca3f to your computer and use it in GitHub Desktop.
Save charlespockert/92d8abffcd79a6f2ca3f to your computer and use it in GitHub Desktop.
<require from="test"></require>
<test></test>
<template>
<p>Name: ${ name }</p>
<p>Surname: ${ name }</p>
</template>
<template>
<p>Page title</p>
<!-- Partial view here -->
<compose view="./partial-view.html" view-model.bind="context"></compose>
</template>
export class Test {
context: { name: "hello", surname: "world" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment