2X faster development
The ultimate Angular UI toolkit to boost your development speed.
A quick start project that helps you to create an Angular 11 Tab with minimal code configuration.
Project pre-requisites
Make sure that you have the compatible versions of TypeScript and Angular in your machine before starting to work on this project.
Angular 11 Tab – Introduction
The Angular 11 Tab used in this project is created from the Syncfusion `ej2-angular-tab` package. You can simply define it as <ejs-tab> within the template. Dependencies
Before starting with this project, the Angular 11 Tab requires to add the Syncfusion `ej2-angular-navigations` package from npmjs, which are distributed in npm as @syncfusion scoped packages. Creating Angular Project
We will see the Angular project creation steps using the Angular CLI tool.
npm install -g @angular/cli@11.2.3
Note: If you would like to follow and run the application in Angular 6 or Angular 5 or Angular 4, you need to replace the CLI command version number with corresponding angular version number.
npm install -g @angular/cli@<CLI VERSION>
npm install @syncfusion/ej2-angular-navigations --save
Adding Angular 11 Tab
You can add the Angular 11 Tab component by using `ejs-tab` directive and the attributes used within this tag allows you to define other tab functionalities.
[app.module.ts] import { BrowserModule } from '@angular/platform-browser'; import { TabModule } from '@syncfusion/ej2-angular-navigations'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; @NgModule({ imports: [ BrowserModule, TabModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }
[app.component.html]
<ejs-tab id="element"> <e-tabitems> <e-tabitem [header]='headerText[0]'> <ng-template #content> Twitter is an online social networking service that enables users to send and read short 140-character messages called "tweets". </ng-template> </e-tabitem> <e-tabitem [header]='headerText[1]'> <ng-template #content> Facebook is an online social networking service headquartered in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg with his Harvard College roommates and fellow students Eduardo Saverin, Andrew McCollum, Dustin Moskovitz and Chris Hughes. </ng-template> </e-tabitem> <e-tabitem [header]='headerText[2]'> <ng-template #content> WhatsApp Messenger is a proprietary cross-platform instant messaging client for smartphones that operates under a subscription business model. </ng-template> </e-tabitem> </e-tabitems> </ejs-tab>
[index.html]
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" />
There are more options to explore with Angular 11 Tab. |
2X faster development
The ultimate Angular UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.