# ant-design-pro-blazor
**Repository Path**: imjasonliao/ant-design-pro-blazor
## Basic Information
- **Project Name**: ant-design-pro-blazor
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-03-31
- **Last Updated**: 2021-03-31
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[English](./README.md) | 简体中文
Ant Design Pro Blazor
开箱即用的中台前端/设计解决方案,Blazor 项目模板。

## 模板
```
- Dashboard
- 分析页
- 监控页
- 工作台
- 表单页
- 基础表单页
- 分步表单页
- 高级表单页
- 列表页
- 查询表格
- 标准列表
- 卡片列表
- 搜索列表(项目/应用/文章)
- 详情页
- 基础详情页
- 高级详情页
- 用户
- 用户中心页
- 用户设置页
- 结果
- 成功页
- 失败页
- 异常
- 403 无权限
- 404 找不到
- 500 服务器出错
- 帐户
- 登录
- 注册
- 注册成功
```
## 使用
### 安装模板
```bash
dotnet new -i AntDesign.Templates
```
### 如果已安装过,请先卸载模板
```bash
dotnet new -u AntDesign.Templates
```
### 新建项目
```bash
# Create an empty wasm project
dotnet new antdesign --host wasm
# Create wasm project with full pages
dotnet new antdesign --host wasm --full
# Create an empty server-side project
dotnet new antdesign --host server
# Create server-side project with full pages
dotnet new antdesign --host server --full
# Create an empty hosted project
dotnet new antdesign --host hosted
# Create hosted project with full pages
dotnet new antdesign --host hosted --full
```
### 覆盖项目
```bash
## You can override an existing project with the --force
dotnet new antdesign --host wasm --force
```