Skip to content

Instantly share code, notes, and snippets.

@gheoan
Forked from jdanyow/app.html
Last active September 27, 2017 23:00
Show Gist options
  • Save gheoan/b9d660895d562e5cb86078b636a1170c to your computer and use it in GitHub Desktop.
Save gheoan/b9d660895d562e5cb86078b636a1170c to your computer and use it in GitHub Desktop.
Aurelia Gist
<template>
<router-view></router-view>
</template>
export class App {
configureRouter(c) {
c.map([
{
route: '',
moduleId: 'child',
}
]);
}
}
<template>
<router-view></router-view>
</template>
export default class {
configureRouter(c) {
c.map([
{
route: ':p',
moduleId: 'test',
}
]);
}
}
<!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></template>
export default class {
activate(param) {
console.log(param)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment