You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure how to correctly get an Eve component to communicate with the outside world. I was thinking firing an event would be the correct way to do this but I could not find a suitable way to get the actual dom node the component is attached to.
I could just use a child dom node one via: this.find('some child_selector').trigger('custom_event',value) but this does of course assume there is a child element, which is not necessarily the case.
this.find() with no parameters I expected to return the component itself, but it does other things...
Would it be possible to have .scope() return the scope's dom node or something similar?
The text was updated successfully, but these errors were encountered:
I am not sure how to correctly get an Eve component to communicate with the outside world. I was thinking firing an event would be the correct way to do this but I could not find a suitable way to get the actual dom node the component is attached to.
I could just use a child dom node one via:
this.find('some child_selector').trigger('custom_event',value)
but this does of course assume there is a child element, which is not necessarily the case.this.find() with no parameters I expected to return the component itself, but it does other things...
Would it be possible to have
.scope()
return the scope's dom node or something similar?The text was updated successfully, but these errors were encountered: