Skip to content

Instantly share code, notes, and snippets.

@mixonic
Last active April 12, 2018 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mixonic/92561d3be8128785682b50666e05c25f to your computer and use it in GitHub Desktop.
Save mixonic/92561d3be8128785682b50666e05c25f to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{#my-component as |c wrapped|}}
direct: {{c}}
<br><br>
component helper {{component c}}
<br><br>
dot rule: {{wrapped.c}}
<br><br>
Called as prop: {{calling-component c=c}}
<br><br>
Called as prop with this.: {{calling-component-with-this c=c}}
{{/my-component}}
<br>
<br>
{{yield (component 'my-closure-component') (hash c=(component 'my-closure-component'))}}
{
"version": "0.13.1",
"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.15.3",
"ember-template-compiler": "2.15.3",
"ember-testing": "2.15.3"
},
"addons": {
"ember-data": "2.15.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment