unpkg es modules

by Sergey Kulikov

HTML

<!doctype html>
<html>
  <head>
    <script src="https://unpkg.com/@webcomponents/webcomponentsjs@^2.2.7/webcomponents-bundle.js"></script>
    <script src="https://unpkg.com/@vaadin/vaadin-button@^2.1.0/vaadin-button.js?module" type="module"></script>
  </head>
  <body>
    <vaadin-button theme="primary">Primary</vaadin-button>
    <vaadin-button theme="secondary">Secondary</vaadin-button>
    <vaadin-button theme="tertiary">Tertiary</vaadin-button>
  </body>
</html>