/ngx-tab

An angular tab module

Primary LanguageTypeScript

NgxTab

A very simple tab component for Angular.

Installation

npm install ngx-tab

Usage

Import the NgxTabModule to your app.module.ts file:

import { NgxTabModule } from 'ngx-tab'

And finally:

<tabs>
  <tab title="Title 01" active=true>Here is content about tab1</tab>
  <tab title="Title 02">Hey, Here is content about tab2</tab>
  <tab title="Title 03">And finally, Here is content about tab3</tab>
</tabs>