Razor 组件未呈现

Razor Component is not rendered

我是 Blazor 的新手,曾尝试在我的 Index.cshtml 中使用 Razor 组件,但它不起作用。也许你可以给我提示错误所在。

组件(FileUploadComponent.razor)位于同一文件夹中:

文件上传组件:

@inherits ComponentBase

<h3>FileUploadComponent</h3>
Test

Index.cshtml:

@page
@model IndexModel
@{
    ViewData["Title"] = "Home page";
}

<div class="text-center">
    <h1 class="display-4">Welcome</h1>
    <p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>

    <FileUploadComponent />
</div>

选择错误的项目模板时有点糟糕。

当我选择 Blazor Webassembly 时,我的代码有效,这就是我想要的。