class X extends PolymerElement {
@decorators.property({ notify: true, reflectToAttribute: true, computed: "getP1()", type: String })
p1: string = null;
getP1(): string {
return 'second string';
}
static get template(): HTMLTemplateElement {
return html`p1: [[p1]]`;
}
The computed property is not computed with the polyfill, without it is.
To reproduce:
The computed property is not computed with the polyfill, without it is.
Any idea?