Polymer template
Sample.html
<dom-module id="sample">
<template>
<paper-button id="clickme" on-click=
"clickMe()">click</paper-button>
</template>
</dom-module>
sample.ts
export class sample controller{
clickMe(){
console.log("button clicked from polymer app");
}
}
I can able to pass the data from angular app to polymer component.Is there any way to trigger the angular event from polymer component.
Dispatch events from Polymer with the data you need and listen for them in Angular.
Polymer:
Angular: