# PageTabsDemo
**Repository Path**: wang-zengxing/page-tabs-demo
## Basic Information
- **Project Name**: PageTabsDemo
- **Description**: MASA Blazor的PageTabs使用示例
- **Primary Language**: C#
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2022-01-15
- **Last Updated**: 2022-01-15
## Categories & Tags
**Categories**: Uncategorized
**Tags**: blazor, MASA, 多页签, PageTabs, WebAssembly
## README
# PageTabsDemo
#### 介绍
[MASA Blazor](https://blazor.masastack.com/)的PageTabs使用示例。
#### 核心代码
MainLayout.razor
```
...
@Body
...
@code {
//其它页面正常打开,状态不会保留
private List _items = new List
{
new PageTabItem("index",""),
new PageTabItem("counter","counter"),
new PageTabItem("fetchdata","fetchdata")
};
}
```