I have a custom polymer element like this :

@CustomTag('my-game')
class GameElement extends PolymerElement {
  @published GameState state;

  // .....
}

And I use it like this :

<my-game state="{{ state }}" />

As the attributes property on Element is a Map<String, String> is it allowed to use any type for @published attributes?

有帮助吗?

解决方案

Yes this works.
I use this to assign my model classes from parent to child elements.

Do you have any issues with it?

An issue with this is, that the DOM doesn't see the attribute being added.
In an unit test I tried to use a MutationObserver to be notified when an attribut was set,
but this works only when a primitive value is assigned.

see https://code.google.com/p/dart/issues/detail?id=17472

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top