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.
40 lines
862 B
40 lines
862 B
import { BCard } from './card'
|
|
import { BCardHeader } from './card-header'
|
|
import { BCardBody } from './card-body'
|
|
import { BCardTitle } from './card-title'
|
|
import { BCardSubTitle } from './card-sub-title'
|
|
import { BCardFooter } from './card-footer'
|
|
import { BCardImg } from './card-img'
|
|
import { BCardImgLazy } from './card-img-lazy'
|
|
import { BCardText } from './card-text'
|
|
import { BCardGroup } from './card-group'
|
|
import { pluginFactory } from '../../utils/plugins'
|
|
|
|
const CardPlugin = /*#__PURE__*/ pluginFactory({
|
|
components: {
|
|
BCard,
|
|
BCardHeader,
|
|
BCardBody,
|
|
BCardTitle,
|
|
BCardSubTitle,
|
|
BCardFooter,
|
|
BCardImg,
|
|
BCardImgLazy,
|
|
BCardText,
|
|
BCardGroup
|
|
}
|
|
})
|
|
|
|
export {
|
|
CardPlugin,
|
|
BCard,
|
|
BCardHeader,
|
|
BCardBody,
|
|
BCardTitle,
|
|
BCardSubTitle,
|
|
BCardFooter,
|
|
BCardImg,
|
|
BCardImgLazy,
|
|
BCardText,
|
|
BCardGroup
|
|
}
|
|
|