Skip to content

Instantly share code, notes, and snippets.

@jmvtrinidad
Forked from AshleyGrant/app.html
Last active April 26, 2017 09:08
Show Gist options
  • Save jmvtrinidad/9b13030be243751bc5a71659ede8f517 to your computer and use it in GitHub Desktop.
Save jmvtrinidad/9b13030be243751bc5a71659ede8f517 to your computer and use it in GitHub Desktop.
Aurelia Gist
<template>
Hello world!
</template>
export class App {
message = 'sample'
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body aurelia-app>
Loading...
<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>
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging();
aurelia.start().then(() => aurelia.setRoot());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment