Thien Ly
Results
2
comments of
Thien Ly
I'm having the same issue. Have you found a workaround?
This is how I do it. ``` customElements.whenDefined('custom-component').then(() => { const ele = customElements.get('custom-component') if (ele) { ele.prototype.myFn = myFn } }) ```