UNPKG

vuetify

Version:

Vue Material Component Framework

52 lines (45 loc) 1.17 kB
import './VSimpleTable.sass' import { convertToUnit } from '../../util/helpers' import Themeable from '../../mixins/themeable' import mixins from '../../util/mixins' import { VNode } from 'vue' export default mixins(Themeable).extend({ name: 'v-simple-table', props: { dense: Boolean, fixedHeader: Boolean, height: [Number, String], }, computed: { classes (): Record<string, boolean> { return { 'v-data-table--dense': this.dense, 'v-data-table--fixed-height': !!this.height && !this.fixedHeader, 'v-data-table--fixed-header': this.fixedHeader, ...this.themeClasses, } }, }, methods: { genWrapper () { return this.$slots.wrapper || this.$createElement('div', { staticClass: 'v-data-table__wrapper', style: { height: convertToUnit(this.height), }, }, [ this.$createElement('table', this.$slots.default), ]) }, }, render (h): VNode { return h('div', { staticClass: 'v-data-table', class: this.classes, }, [ this.$slots.top, this.genWrapper(), this.$slots.bottom, ]) }, })