带参数的组件

    科技2022-07-16  122

    @page "/ParameterComponent" @page "/ParameterComponent/{text}" <h3>Blazor is @Text</h3> @code { [Parameter] public string Text { get; set; } protected override void OnInitialized() { Text = Text ?? "很棒"; } }

     

    Processed: 0.009, SQL: 8