A set of standard basic component libraries based on Material design specifications and BlazorComponent interaction capabilities
English| 简体中文
Provide a standard basic component library based on Material design specifications and BlazorComponent's interactive capabilities. Provides preset components for standard scenarios such as layout, frame standard, Loading, and global exception handling. Starting from more practical scenarios, to meet the needs of more users and scenarios, and to minimize the time cost of developers. Shorten the development cycle and improve development efficiency. And provide a set of examples of Web solutions - MASA Blazor Pro has a variety of common scenes and preset layouts and other exciting content.
MASA Blazor is based on the Material design specification, and each component is carefully designed, with modularity, responsiveness and excellent performance. MASA Blazor is regularly maintained and upgraded by a professional full-time technical team, efficient response speed, diversified solutions, long-term support, and enterprise-level support. At present, it has been used in several well-known companies, and the follow-up MASA Stack product series will continue to be used. In addition to ensuring the quality of the project, it can also continue to add new components and functions. In addition to providing developers with many mid- and Taiwan-based open source projects, MASA Stack, one of its most basic components, MASA Blazor, also hopes to be the most practical component library.
- Rich components: Contains the basic components of Vuetify 1:1 restoration, as well as many practical preset components and deep integration functions of .Net, including three linkages of Url, breadcrumbs, navigation, advanced search, i18n, etc.
- UI design language: modern design style, excellent UI multi-end experience design
- Professional example: MASA Blazor Pro provides preset layouts for a variety of common scenarios
- Easy to get started: rich and detailed getting started documents, free video tutorials (in production)
- Active community encouragement: users participate in real-time interaction, make contributions to join us, and build the most open open source community
- Long-term support: full-time team maintenance, long-term support, and enterprise-level support
- Choice of well-known companies: This technology framework has been chosen by many well-known companies, and the MASA Stack product line will continue to be used in the future, and new functions will continue to be added
- Install .NET SDK 6.0
- Install Visual Studio Code or Visual Studio 2022
Install Template
dotnet new --install Masa.Template
Create Project
- Blazor Server
dotnet new masabp -o Masa.Test
- Blazor WebAssembly
dotnet new masabp --mode Wasm -o Masa.TestWasm
- Blazor RCL
dotnet new masabp --mode ServerAndWasm -o Masa.TestRcl
Go to the Server project directory
cd Masa.Test
Run
dotnet run
- Install Nuget package
dotnet add package Masa.Blazor
- Add Masa.Blazor related services to
Startup.ConfigureServices
:
services.AddMasaBlazor();
- Introduce styles, fonts, scripts in
wwwroot/index.html
(WebAssembly) orPages/_Host.cshtml
(Server):
<html lang="en">
<head>
<!--Style-->
<link href="_content/Masa.Blazor/css/masa-blazor.min.css" rel="stylesheet">
<!--Font-->
<link href="https://cdn.jsdelivr.net/npm/@("@mdi")/[email protected]/css/materialdesignicons.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" rel="stylesheet">
</head>
<body>
<!--Script (try to put it at the end of the body)-->
<script src="_content/BlazorComponent/js/blazor-component.js"></script>
</body>
</html>
- Add the namespace to the
_Imports.razor
file:
@using Masa.Blazor
@using BlazorComponent
- Modify the
Shared/MainLayout.razor
file to make MApp the root element:
<MApp>
//Other layout content
</MApp>
See more :https://blazor.masastack.com/
- Install .NET SDK 6.0
- Install Visual Studio Code or Visual Studio 2022
git clone --recursive https://github.com/BlazorComponent/MASA.Blazor.git
cd MASA.Blazor
git submodule foreach git checkout main
cd Doc/Masa.Blazor.Doc.Server
dotnet run
Recommended use chrome or edge to visit http://localhost:5000/
- Blazor official document
- Build a Blazor web application
- What is Blazor
- Exercise-Configure the development environment
- Blazor components
- Exercise-add components
- Data binding and events
- Exercise-data binding and events
- Summarize
- BlazorComponent(Unstyled underlying component framework)
- MASA Blazor Pro(Contains examples of various business scenarios)
Chrome | Firefox | Safari | Microsoft Edge | |
---|---|---|---|---|
iOS | Supported | Supported | Supported | Supported |
Android | Supported | Supported | N/A | Supported |
Chrome | Firefox | Safari | Opera | Microsoft Edge | Internet Explorer | |
---|---|---|---|---|---|---|
Mac | Supported | Supported | Supported | Supported | N/A | N/A |
Linux | Supported | Supported | N/A | N/A | N/A | N/A |
Windows | Supported | Supported | Not supported | Supported | Supported | Supported, IE11+ |
Due to WebAssembly restriction, Blazor WebAssembly doesn't support IE browser, but Blazor Server supports IE 11† with additional polyfills. See official documentation
- Fork & Clone
- Create Feature_xxx branch
- Commit with commit message, like
feat:add MButton
- Create Pull Request
Thanks to all the friends who have contributed to this project.
QQ group | WX public account | WX Customer Service |
---|---|---|
The Digital Flash technical team is an efficient, stable and innovative team. The team adheres to the original intention of enriching the Blazor ecosystem, and it is the pursuit of the Digital Flash technical team to continue to work hard to bring a better experience to the developers. Thank you for your support and use.
This project adopts the code of conduct defined in the "Contributors Convention" to clarify the expected behavior of our community. For more information, see MASA Stack Community Code of Conduct.
Copyright (c) 2021-present Masa.Blazor