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.
25 lines
764 B
25 lines
764 B
4 years ago
|
import { BNavbar } from './navbar';
|
||
|
import { BNavbarNav } from './navbar-nav';
|
||
|
import { BNavbarBrand } from './navbar-brand';
|
||
|
import { BNavbarToggle } from './navbar-toggle';
|
||
|
import { NavPlugin } from '../nav';
|
||
|
import { CollapsePlugin } from '../collapse';
|
||
|
import { DropdownPlugin } from '../dropdown';
|
||
|
import { pluginFactory } from '../../utils/plugins';
|
||
|
var NavbarPlugin =
|
||
|
/*#__PURE__*/
|
||
|
pluginFactory({
|
||
|
components: {
|
||
|
BNavbar: BNavbar,
|
||
|
BNavbarNav: BNavbarNav,
|
||
|
BNavbarBrand: BNavbarBrand,
|
||
|
BNavbarToggle: BNavbarToggle,
|
||
|
BNavToggle: BNavbarToggle
|
||
|
},
|
||
|
plugins: {
|
||
|
NavPlugin: NavPlugin,
|
||
|
CollapsePlugin: CollapsePlugin,
|
||
|
DropdownPlugin: DropdownPlugin
|
||
|
}
|
||
|
});
|
||
|
export { NavbarPlugin, BNavbar, BNavbarNav, BNavbarBrand, BNavbarToggle };
|