Skip to content

Instantly share code, notes, and snippets.

@kabaehr
Last active November 8, 2017 09:20
Show Gist options
  • Save kabaehr/ed6fdf1fec4f77ea4f85b8fd6cf2c1f4 to your computer and use it in GitHub Desktop.
Save kabaehr/ed6fdf1fec4f77ea4f85b8fd6cf2c1f4 to your computer and use it in GitHub Desktop.
Master detail
<template>
Detail
</template>
export class Detail { message = 'Hello World'; }
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div aurelia-app="master"></div>
<div aurelia-app="detail"></div>
<h1>Loading...</h1>
<script src="https://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/jspm_packages/system.js"></script>
<script src="https://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/config.js"></script>
<script>
System.import('aurelia-bootstrapper');
</script>
</body>
</html>
<template>
<h1>Master</h1>
</template>
export class Master { message = 'Hello World'; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment