How To Call Function Defined Inside Polymer Custom Element And Pass Arguments?
I have html page using polymer builtin elements along with my customElement(my-form)
Solution 1:
You're setting this.data =
but then in your console.log
you're using data.name
instead of this.data.name
.
Post a Comment for "How To Call Function Defined Inside Polymer Custom Element And Pass Arguments?"