Table

Bootstrap's table enhances the basic HTML table.

Use the bsTable class to create an instance of Bootstrap's table inside WireBootstrap.

const myTable = new wire.bsTable();

Render the component using an HTML table element.

<table id="table" class="table table-hover table-striped"></table>
...
myTable.render("#table",{
    ...
});

Web Component

Use the wire-bs-table web component to render the component using Web Components.

<wire-bs-table wr-config=""></wire-bs-table>

Last updated