Link

<MudLink Href="#">Default</MudLink>
<MudLink Href="#" Typo="Typo.body2">Different Typography</MudLink>
<MudLink Href="#" Disabled="true">Disabled link</MudLink>
Underlines

<MudLink Href="#">Default</MudLink>
<MudLink Href="#" Underline="Underline.Always">Always</MudLink>
<MudLink Href="#" Underline="Underline.None">None</MudLink>
OnClick

OnClick property provides a way to invoke an action instead of (or in conjunction with) Href navigation.

Count and go Count

Counter: 0

<MudLink OnClick="Count" Href="/components/link#onclick">Count and go</MudLink>
<MudLink OnClick="Count">Count</MudLink>
<MudText>Counter: @counter</MudText>
@code {
    private int counter = 0;

    private void Count() => counter++;
}

Copyright © 2020-2024 MudBlazor.

Powered by .NET 8.0.8

An error has occurred. This application may no longer respond until reloaded. Reload 🗙