mh_custom/wtmProject.Shared/WtmBlazorUtils/WTComponent.cs
2024-05-17 13:43:36 +08:00

16 lines
383 B
C#

using System.Collections.Generic;
using Microsoft.AspNetCore.Components;
namespace WtmBlazorUtils
{
public class WTComponent : ComponentBase
{
/// <summary>
/// 获得/设置 用户自定义属性
/// </summary>
[Parameter(CaptureUnmatchedValues = true)]
public IDictionary<string, object> AdditionalAttributes { get; set; }
}
}