1.1.0 • Published 8 years ago

ember-with-service v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Ember-with-service

npm version Ember Observer Score This README outlines the details of collaborating on this Ember addon.

Installation

  • ember install ember-with-service

Use

Let's say we wanted to inject the session service into our template:

<nav>
  {{#with-service 'session' as |session|}}
    <ul>
      {{#if session.isAuthenticated}}
        <li>{{#link-to 'logout'}}Logout{{/link-to}}</li>
      {{/if}}
    </ul>
  {{/with-service}}
</nav>