You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
413 B
18 lines
413 B
using Lsw.Abp.AntDesignUI;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesignUIApp.Pages;
|
|
|
|
public partial class Users : ComponentBase
|
|
{
|
|
public List<AbpBreadcrumbItem> BreadcrumbItems { get; set; } = new();
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
BreadcrumbItems = new List<AbpBreadcrumbItem>()
|
|
{
|
|
new("Admin"),
|
|
new("Users")
|
|
};
|
|
}
|
|
}
|
|
|