ember-glimmer

ember-glimmer Module

Parent: ember

Glimmer is a templating engine used by Ember.js that is compatible with a subset of the Handlebars syntax.

Showing a property

Templates manage the flow of an application's UI, and display state (through the DOM) to a user. For example, given a component with the property "name", that component's template can use the name in several ways:

app/components/person.js
  export default Ember.Component.extend({
    name: 'Jill'
  });
app/components/person.hbs
{{name}}
<