Skip to content

Instantly share code, notes, and snippets.

@AStoker
Last active November 7, 2016 21:35
Show Gist options
  • Save AStoker/0ee713caee874d4767aba07effe61faf to your computer and use it in GitHub Desktop.
Save AStoker/0ee713caee874d4767aba07effe61faf to your computer and use it in GitHub Desktop.
Testing out Slot functionality
<template>
<require from="./customListCustomElement"></require>
<custom-list items.bind="tracks">
<div slot="title-template">Some song</div>
<div slot="content-template">
<div repeat.for="line of item.content">
Line: ${$index + 1}. ${line.lyric}
</div>
</div>
</custom-list>
</template>
export class App {
tracks = [
{ title: 'Walking on the Sun', content: [
{
lyric:'foo'
},
{
lyric:'bar'
}
]
},
{ title: 'All Star', content: [
{
lyric:'boo'
},
{
lyric:'blah'
}
]
}
]
}
<template>
<div repeat.for="item of items">
<slot name="title-template">
<div>${item.title}</div>
</slot>
<slot name="content-template">
<div repeat.for="line of item.content">
${$index + 1}. ${line.lyric}
</div>
</slot>
</div>
</template>
import { bindable, computedFrom } from 'aurelia-framework';
export class CustomListCustomElement {
@bindable items;
}
<!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