why do not working in ie?

https://www.polymer-project.org/docs/polymer/polymer.html#computed-properties

<link rel="import" href="../../components/polymer/polymer.html">
<polymer-element name="square-element" attributes="square">
  <template>
    <input type="number" value="{{num}}"><br>
    <em>{{num}}^2 = {{square}}</em>
  </template>
  <script>
    Polymer('square-element', {
      num: 2,
      computed: {
        square: 'num * num'
      }
    });
   </script></polymer-element>



i tested in ie10, ie11...


thanks for your help..

Follow Polymer on Google+: plus.google.com/107187849809354688692
--- 
You received this message because you are subscribed to the Google Groups 
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/polymer-dev/c7a35d0d-edc4-4a51-9ff9-10070a57f823%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to