fix(radio-button): forward focus, blur events

This commit is contained in:
Eric Liu 2025-03-22 08:45:44 -07:00
commit db5aaee501
3 changed files with 9 additions and 2 deletions

View file

@ -26,6 +26,12 @@
{id}
{name}
{ref}
on:focus={() => {
console.log("focus");
}}
on:blur={() => {
console.log("blur");
}}
on:change={() => {
console.log("change");
}}