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.
33 lines
979 B
33 lines
979 B
// Icons only build
|
|
import { BootstrapVueIcons, IconsPlugin } from './icons'
|
|
|
|
const install = BootstrapVueIcons.install
|
|
const NAME = BootstrapVueIcons.NAME
|
|
|
|
export {
|
|
// Installer exported just in case the consumer does not import `default`
|
|
// as the plugin in CommonJS build (or does not have interop enabled
|
|
// for CommonJS). Both the following will work:
|
|
// BootstrapVueIcons = require('bootstrap-vue/dist/bootstrap-vue-icons.common')
|
|
// BootstrapVueIcons = require('bootstrap-vue/dist/bootstrap-vue-icons.common').default
|
|
// Vue.use(BootstrapVueIcons)
|
|
install,
|
|
NAME,
|
|
// Main BootstrapVueIcons Plugin
|
|
BootstrapVueIcons,
|
|
IconsPlugin
|
|
}
|
|
|
|
//
|
|
// Export Icon components
|
|
//
|
|
// export * from './icons'
|
|
|
|
export { BIcon } from './icons/icon'
|
|
|
|
// This re-export is only a single level deep, which
|
|
// Webpack 4 handles correctly when tree shaking
|
|
export * from './icons/icons'
|
|
|
|
// Default export is the BootstrapVueIcons plugin
|
|
export default BootstrapVueIcons
|
|
|