waibu-bootstrap
Version:
Bootstrap suport for Waibu Framework
15 lines (12 loc) • 366 B
JavaScript
const cls = 'table'
async function tfoot () {
return class Tfoot extends this.baseFactory {
constructor (options) {
super(options)
this.selector = `.${cls} tfoot`
this.component.normalizeAttr(this.params)
if (this.params.attr.divider) this.params.attr.class.push(`${cls}-group-divider`)
}
}
}
export default tfoot