Slide 8
Slide 8 text
Fluent UI Blazor導入方法
• パッケージを導入
dotnet add package Microsoft.Fast.Components.FluentUI
• スタイル
• WebAssemblyの場合index.htmlにServerの場合_Layout.cshtmlに
• using
• _Imports.razorにusingを追加
@using Microsoft.Fast.Components.FluentUI
• Program.csに以下を追加
builder.Services.AddFluentUIComponents(options =>
{
options.HostingModel = BlazorHostingModel.WebAssembly;
});