Skip to content

Instantly share code, notes, and snippets.

@AshleyGrant
Created July 3, 2017 18:50
Show Gist options
  • Save AshleyGrant/9819e9bf73f6bb43b07af355c5e166ad to your computer and use it in GitHub Desktop.
Save AshleyGrant/9819e9bf73f6bb43b07af355c5e166ad to your computer and use it in GitHub Desktop.
Aurelia Gist
<template>
<require from="./has-method"></require>
<div has-method="hello" has-method.ref="theAttribute"></div>
<button click.trigger="callMethod()">Call method</button>
</template>
export class App {
callMethod() {
const result = this.theAttribute.someMethod('blah');
}
}
export class HasMethodCustomAttribute {
someMethod(foo) {
console.log('someMethod called with foo = ' + foo + ', this.value = ' + this.value);
return `Hello ${foo}`;
}
}
<!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