Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!doctype html>
<html>
<head>
  <base href="https://polygit.org/polymer+:2.x/webcomponents+:v1/shadycss+webcomponents+:master/components/">
  <script src="webcomponentsjs/webcomponents-lite.js"></script>
  <link rel="import" href="polymer/polymer.html">
</head>
<body>
  <dom-module id="my-element">
    
    <template>
      <style>
        :host {
          display: block;
        }
      </style>
      <div>[[prop]]</div>
    </template>
    <!-- Uncomment for legacy syntax -->
    <!--
    <script>
    HTMLImports.whenReady(function() {
      Polymer({
        is: 'my-element',
        properties: {
          prop: {
            type: String,
            value: 'my-element'
          }
        }
      });
    });
    </script>
    -->
    
    <!-- Uncomment for class syntax -->
    <script>
    HTMLImports.whenReady(function() {
      class MyElement extends Polymer.Element {
        static get is() { return 'my-element'; }
        static get properties() {
          return {
            prop: {
              type: String
            }
          }
        }
        constructor() {
          super();
          this.prop = 'my-element'
        }
      }
      customElements.define(MyElement.is, MyElement);
    });
      
    </script>
    
  </dom-module>
  <my-element></my-element>
  
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
kevinpschaafpro
0viewers