Skip to content

Instantly share code, notes, and snippets.

@JeroenVinke
Created August 22, 2017 13:58
Show Gist options
  • Save JeroenVinke/94d512ce3005ba235b092c985c613502 to your computer and use it in GitHub Desktop.
Save JeroenVinke/94d512ce3005ba235b092c985c613502 to your computer and use it in GitHub Desktop.
Aurelia Gist
<template>
<h1>${message}</h1>
${reportCriteria.reportType}
<fieldset class="form-group">
<div class="form-check" repeat.for="type of types">
<label class="form-check-label">
<input type="radio" class="form-check-input" name="reportType" id="MgrSum" model.bind="type.id" checked.bind="reportCriteria.reportType">
<b>${type.title}</b> ${type.description}
</label>
</div>
</fieldset>
</template>
export class App {
message = 'Hello World!';
reportCriteria = {
reportType: 1
};
types = [{
id: 1,
title: 'Manager Summary Report',
description: '- shows scores and performance by region by IA brand'
}, {
id: 2,
title: 'Manager Detailed Report',
description: '- shows scores and performance by individual adjusters'
}, {
id: 3,
title: 'CSR Report',
description: '- (internal) identifies which files need to be followed up on by our APEX team'
}]
}
<!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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment