网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
<MudDialog>
    <TitleContent>
        <MudText Typo="Typo.h6">
            <MudIcon Icon="@Icons.Material.Filled.Preview" Class="mr-3 mb-n1"/>
            查看头像
        </MudText>
    </TitleContent>
    <DialogContent>
        <img src="@($"{Avatar}")" style="max-width: 500px" alt="avatar"/>
    </DialogContent>
</MudDialog>

@code {
    [Parameter] public string Avatar { get; set; }
}
loading