Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 566 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 566 Bytes

Ember-ez-tabs

This README outlines the details of collaborating on this Ember addon.

Installation

  • npm install --save-dev ember-ez-tabs

Usage Example

  {{#ez-tabs}}
    {{#ez-tab-list}}
      {{#ez-tab}}One{{/ez-tab}}
      {{#ez-tab}}Two{{/ez-tab}}
      {{#ez-tab}}Three{{/ez-tab}}
    {{/ez-tab-list}}
    {{#ez-tab-panel-list}}
      {{#ez-tab-panel}}Content One{{/ez-tab-panel}}
      {{#ez-tab-panel}}Content Two{{/ez-tab-panel}}
      {{#ez-tab-panel}}Content Three{{/ez-tab-panel}}
    {{/ez-tab-panel-list}}
  {{/ez-tabs}}