custom-bootstrap-vue
Version:
Custom version of bootstrap-vue created for providing specific theme to a particular project
13 lines (10 loc) • 358 B
JavaScript
import { BVToastPlugin } from './helpers/bv-toast'
import { BToast } from './toast'
import { BToaster } from './toaster'
import { pluginFactory } from '../../utils/plugins'
const ToastPlugin = /*#__PURE__*/ pluginFactory({
components: { BToast, BToaster },
// $bvToast injection
plugins: { BVToastPlugin }
})
export { ToastPlugin, BToast, BToaster }