Skip to content

Instantly share code, notes, and snippets.

@patocallaghan
Forked from sduquej/components.my-component.js
Last active January 18, 2018 18:17
Show Gist options
  • Save patocallaghan/07bf6e0424a9283fa8c9729ec4607e3b to your computer and use it in GitHub Desktop.
Save patocallaghan/07bf6e0424a9283fa8c9729ec4607e3b to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Component.extend({
classNames: ['myClass'],
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
actions: {
log() {
console.log('hello')
}
}
});
body {
margin: 12px 16px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 12pt;
}
.myClass {
background-color: red;
cursor: pointer;
}
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{my-component click=(action 'log')}}
<br>
<br>
click me to log to the console
{
"version": "0.13.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.16.2",
"ember-template-compiler": "2.16.2",
"ember-testing": "2.16.2"
},
"addons": {
"ember-data": "2.16.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment