Skip to content

Latest commit

History

History
18 lines (16 loc) 路 493 Bytes

indexhtml.md

File metadata and controls

18 lines (16 loc) 路 493 Bytes

Add component to your project with index.html:

<!DOCTYPE html>
<html>
  <head>
    // Import from node modules
    <script src="node_modules/@revolist/revogrid/dist/revo-grid/revo-grid.js"></script>

    // With unpkg
    <script src="https://cdn.jsdelivr.net/npm/@revolist/revogrid@latest/dist/revo-grid/revo-grid.js"></script>
  </head>
  <body>
    // after you imported file to your project simply define component
    <revo-grid class="grid-component" />
  </body>
</html>