custom-bootstrap-vue
Version:
Custom version of bootstrap-vue created for providing specific theme to a particular project
17 lines (15 loc) • 392 B
JavaScript
import Vue from '../../utils/vue'
import { BTd } from './td'
// TODO:
// In Bootstrap v5, we won't need "sniffing" as table element variants properly inherit
// to the child elements, so this can be converted to a functional component
// @vue/component
export const BTh = /*#__PURE__*/ Vue.extend({
name: 'BTh',
extends: BTd,
computed: {
tag() {
return 'th'
}
}
})