StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
905 B
35 lines
905 B
import Vue from '../../utils/vue'
|
|
|
|
// Mixins
|
|
import idMixin from '../../mixins/id'
|
|
import normalizeSlotMixin from '../../mixins/normalize-slot'
|
|
|
|
// Main table renderer mixin
|
|
import tableRendererMixin from './helpers/mixin-table-renderer'
|
|
|
|
// Feature miins
|
|
import stackedMixin from './helpers/mixin-stacked'
|
|
|
|
// b-table-simple component definition
|
|
// @vue/component
|
|
export const BTableSimple = /*#__PURE__*/ Vue.extend({
|
|
name: 'BTableSimple',
|
|
// Order of mixins is important!
|
|
// They are merged from first to last, followed by this component.
|
|
mixins: [
|
|
// Required mixins
|
|
idMixin,
|
|
normalizeSlotMixin,
|
|
tableRendererMixin,
|
|
// feature mixin
|
|
// Stacked requires extra handling by users via
|
|
// the table cell `stacked-heading` prop
|
|
stackedMixin
|
|
],
|
|
computed: {
|
|
isTableSimple() {
|
|
return true
|
|
}
|
|
}
|
|
// render function provided by table-renderer mixin
|
|
})
|
|
|