mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-13 16:35:55 +08:00
cc836bcf10
* 使MenItem同时支持Icon和IconFont,解决当使用iconfont.cn图标后,缩起内嵌菜单导致按钮样式不统一的问题。 * 空值判断 * add IconTemplate in MenuItem * code format * Add AuthorizeReuseTabsRouteView * add readme.md * remove comments * Add AuthorizeResuseTabsRouteView test demo * save * save * done * refactor the test app * fix test app * debug * debug * fix tab render * fix the copyright * fix package infomation * fix tab display order * fix content focerender Co-authored-by: BG345554 <ymgu@best-inc.com> Co-authored-by: James Yeung <shunjiey@hotmail.com>
29 lines
935 B
HTML
29 lines
935 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>AntDesign.Tests.Authentication</title>
|
|
<base href="/" />
|
|
|
|
<link href="css/app.css" rel="stylesheet" />
|
|
<link href="AntDesign.TestApp.Client.styles.css" rel="stylesheet" />
|
|
<link href="_content/AntDesign/css/ant-design-blazor.css" rel="stylesheet">
|
|
<script src="_content/AntDesign/js/ant-design-blazor.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">Loading...</div>
|
|
|
|
<div id="blazor-error-ui">
|
|
An unhandled error has occurred.
|
|
<a href="" class="reload">Reload</a>
|
|
<a class="dismiss">🗙</a>
|
|
</div>
|
|
<script src="_content/Microsoft.AspNetCore.Components.WebAssembly.Authentication/AuthenticationService.js"></script>
|
|
<script src="_framework/blazor.webassembly.js"></script>
|
|
</body>
|
|
|
|
</html>
|