Skip to content

Instantly share code, notes, and snippets.

@Vheissu
Created August 25, 2017 04:06
Show Gist options
  • Save Vheissu/20d01b94879835e5c7e7cae1e3d2bbcd to your computer and use it in GitHub Desktop.
Save Vheissu/20d01b94879835e5c7e7cae1e3d2bbcd to your computer and use it in GitHub Desktop.
Basic Aurelia Gist Skeleton
<template>
<h1>App.html</h1>
<router-view></router-view>
</template>
export class App {
configureRouter(config, router) {
config.title = 'Test App';
config.map([
{
route: '',
name: 'default',
moduleId: './root',
title: 'Root'
},
]);
}
}
<template>
<h3>Child router</h3>
<router-view></router-view>
</template>
export class ChildRoute {
configureRouter(config, router) {
config.map([
{
route: '',
name: 'default',
moduleId: './root',
title: 'Root'
},
]);
}
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body aurelia-app>
<h1>Loading...</h1>
<script src="https://jdanyow.github.io/rjs-bundle/node_modules/requirejs/require.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/config.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/aurelia.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/babel.js"></script>
<script>
require(['aurelia-bootstrapper']);
</script>
</body>
</html>
<template>
<h2>Root</h2>
</template>
export class Root {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment