mh_custom/wtmProject.Shared/WtmBlazorUtils/WTComponent.cs

16 lines
383 B
C#
Raw Permalink Normal View History

2024-05-16 17:30:33 +08:00
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; }
}
}