Skip to content

Instantly share code, notes, and snippets.

@jwx
Last active February 6, 2017 17:43
Show Gist options
  • Save jwx/95a5267b77993b6cda157425d27b26a2 to your computer and use it in GitHub Desktop.
Save jwx/95a5267b77993b6cda157425d27b26a2 to your computer and use it in GitHub Desktop.
Aurelia Gist
<template>
<require from="el"></require>
<div>callMe.bind: <el func.bind="callMe.bind($this)"></el></div>
<div>callMe.call: <el func.call="callMe(one, two)"></el></div>
</template>
export class App {
message = 'Hello World!';
callMe(arg1, arg2) {
console.log('In callMe:', arguments, this);
}
}
<template>
<span click.trigger="onClick()">CLICK ME</span>
</template>
import {bindable} from 'aurelia-framework';
export class ElCustomElement {
@bindable func;
onClick() {
this.func({one: 'one', two: 'two'});
this.func('one', 'two');
}
}
<!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