Komachi
Komachi

Reputation: 139

Angular page navigation in the side menu

I want to implement a page navigation in a side menu in my angular page like this. Angular official website page navigation

But I couldn't find any like this component in the Angular Material or Bootstrap.

Is there any good library that offers a page navigation in a page side?

Or do I just need to write a code myself to implement this?

Upvotes: 2

Views: 1122

Answers (1)

Oded BD
Oded BD

Reputation: 3276

If you will take a look at the source you will see they are using <aio-toc ng-version="8.1.0-next.1">

When you will look for it you will see the source code over here:

https://github.com/angular/angular/tree/master/aio/src/app/custom-elements/toc

Upvotes: 1

Related Questions