UNPKG

bs-datatable

Version:

A data table based on Bootstrap 5

16 lines (11 loc) 338 B
import { BSDataTableRowCollection } from "./BSDataTableRowCollection"; export class BSDataTableHeader extends BSDataTableRowCollection { constructor() { super(); this.render(); } render() { this.element = document.createElement('thead'); this.addClass('table-light') } }