I would like to wrap input(type button) inside custom component so that I could apply isolated css and some speciel parameters to control. But how do I propagate onclick and other events from input to my component?
Whhen you use input button you can use onclick event and its settings like this:
<input type="button" @onclick:preventDefault="true" @onclick:stopPropagation="true" @onclick="@someMethod" />
How do I achieve the same with my component? So I can have:
<customBUtton @onclick:preventDefault="true" @onclick:stopPropagation="true" @onclick="@someMethod" />
thanks for any help
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…