What is the best way to communicate and pass data between child polymer elements?
问题 I have a parent polymer element baseline-policies-tab . This, on the UI, represents a tab on my website. In this tab, I have two polymer elements. One is baseline-policies-create which is a polymer element with a button. When this button is pressed, I want to send an event to another child polymer element that is contained within the tab, baseline-policy-ajax . This element will send an ajax request. I've tried dispatchEvent by sending a CustomEvent but it didn't work for me (here is the