JSPM

  • Created
  • Published
  • Downloads 82
  • Score
    100M100P100Q77305F
  • License MIT

Package Exports

  • ionic2-super-tabs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ionic2-super-tabs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Swipeable tabs for Ionic 2.

Work in progress, but essentially works.

npm i --save ionic2-super-tabs
import { SuperTabsModule } from 'ionic2-super-tabs';

@NgModule({
    ...
    imports: [
      ...
      SuperTabsModule
      ],
    ...
})
<super-tabs>
  <super-tab [tabRoot]="page1" title="First page" [icon]="'home'"></super-tab>
  <super-tab [tabRoot]="page2" title="Second page" [icon]="'pin'"></super-tab>
  <super-tab [tabRoot]="page3" title="Third page" [icon]="'heart'"></super-tab>
</super-tabs>