polymer-template

Template Polymer elements.

HTML

<!DOCTYPE html>
<html>

  <head>
    <script src="https://polygit.org/components/webcomponentsjs/webcomponents-lite.min.js"></script>
    <link rel="import" href="https://polygit.org/components/polymer/polymer.html" />
  </head>

  <body>
    
    <hello-element></hello-element>
    
    <dom-module id="hello-element">
      <template[[message]]/template>
    </dom-module>
    
    <script>
      HTMLImports.whenReady(function(){
        Polymer({
          is: "hello-element",
          properties:{message:{type:string,
          value:"Success!"}}
        })
      })  
    </script>
    
  </body>

</html>