feat: Blazor 模式下增加未开发网页默认文字

This commit is contained in:
Argo Zhang 2020-01-19 19:50:20 +08:00
parent d0c05b4f78
commit 4b3e6fd04c
No known key found for this signature in database
GPG Key ID: 152E398953DDF19F
1 changed files with 6 additions and 0 deletions

View File

@ -32,6 +32,12 @@ namespace Bootstrap.Admin.Components
builder.OpenComponent(0, t);
builder.CloseComponent();
}
else
{
builder.OpenElement(0, "h6");
builder.AddContent(1, "正在玩命开发中... 敬请期待");
builder.CloseElement();
}
}
}
}