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.
29 lines
1.2 KiB
29 lines
1.2 KiB
import Vue from '../../utils/vue'; // Mixins
|
|
|
|
import hasListenerMixin from '../../mixins/has-listener';
|
|
import idMixin from '../../mixins/id';
|
|
import normalizeSlotMixin from '../../mixins/normalize-slot'; // Table helper Mixins
|
|
|
|
import itemsMixin from './helpers/mixin-items';
|
|
import captionMixin from './helpers/mixin-caption';
|
|
import colgroupMixin from './helpers/mixin-colgroup';
|
|
import stackedMixin from './helpers/mixin-stacked';
|
|
import theadMixin from './helpers/mixin-thead';
|
|
import tfootMixin from './helpers/mixin-tfoot';
|
|
import tbodyMixin from './helpers/mixin-tbody'; // Main table renderer mixin
|
|
|
|
import tableRendererMixin from './helpers/mixin-table-renderer'; // b-table-lite component definition
|
|
// @vue/component
|
|
|
|
export var BTableLite =
|
|
/*#__PURE__*/
|
|
Vue.extend({
|
|
name: 'BTableLite',
|
|
// Order of mixins is important!
|
|
// They are merged from first to last, followed by this component.
|
|
mixins: [// Required mixins
|
|
hasListenerMixin, idMixin, normalizeSlotMixin, itemsMixin, tableRendererMixin, stackedMixin, theadMixin, tfootMixin, tbodyMixin, // Features Mixins
|
|
// These are pretty lightweight, and are useful for lightweight tables
|
|
captionMixin, colgroupMixin] // render function provided by table-renderer mixin
|
|
|
|
}); |