Is there a way to output all the model data about polymer elements?
I would like to bring each property and their value to a view.
I know vue does this using
{{ $data | json }}
But Vue also has a data attribute, which is dumpable. Not sure if it is possible in a polymer to dump all the properties and their value into a view.
I would like to use something similar with polymer. But how?
I know something like this does not work:
{{ $properties }}
Loveandhappiness
source share