Browse Source

Merge pull request #4292 from abpframework/gterdem/docs_breadcrumb

Create documentation for Breadcrumbs Tag Helper
pull/4295/head
Yunus Emre Kalkan 6 years ago
committed by GitHub
parent
commit
266b344f8d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 25
      docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md

25
docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md

@ -0,0 +1,25 @@
# Breadcrumbs
## Introduction
`abp-breadcrumb` is the main container for breadcrumb items.
Basic usage:
````csharp
<abp-breadcrumb>
<abp-breadcrumb-item href="#" title="Home" />
<abp-breadcrumb-item href="#" title="Library"/>
<abp-breadcrumb-item title="Page"/>
</abp-breadcrumb>
````
## Demo
See the [breadcrumbs demo page](https://bootstrap-taghelpers.abp.io/Components/Breadcrumbs) to see it in action.
## abp-breadcrumb-item Attributes
- **title**: Sets the text of the breadcrumb item.
- **active**: Sets the active breadcrumb item. Last item is active by default, if no other item is active.
- **href**: A value indicates if an `abp-breadcrumb-item` has a link. Should be a string link value.
Loading…
Cancel
Save