Skip to content

Instantly share code, notes, and snippets.

@dtaalbers
Last active February 22, 2018 10:29
Show Gist options
  • Save dtaalbers/40dcf861e75857e7ab2aaa702cf1afb4 to your computer and use it in GitHub Desktop.
Save dtaalbers/40dcf861e75857e7ab2aaa702cf1afb4 to your computer and use it in GitHub Desktop.
Aurelia Child Components
<template>
<require from='board'></require>
<require from='boardlane'></require>
<board>
<boardlane></boardlane>
<boardlane></boardlane>
<boardlane></boardlane>
</board>
</template>
export class App {
title = 'Custom Element with Slot'
}
<template> <div class="body"> <slot></slot> </div> </template>
import { customElement, children } from 'aurelia-framework';
@customElement('board')
@children({ name: 'lanes', selector: 'boardlane' })
export class BoardComponent {
lanes = [];
attached() {
console.log('lanes', this.lanes)
}
}
<template> <div class="body"> Lane </div> </template>
import { customElement } from 'aurelia-framework';
@customElement('boardlane')
export class BoardLaneComponent {
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.panel {
border: 1px solid black;
}
.panel-heading {
background: lightblue;
color: white;
border-bottom: 1px solid black;
padding: 3px;
font-size: 20px;
}
.panel-body {
padding: 3px;
}
</style>
</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