vue3-plugin-bootstrap5

Vue 3 Directives for Bootstrap 5

MIT License

Downloads
111
Stars
9
Committers
1

Vue 3 Plugin for Bootstrap 5

BETA BETA BETA BETA BETA BETA BETA

This plugin is designed to add directives to Vue 3 that can be used to create and control Bootstrap 5 JavaScript objects.

This is not intended to be a Bootstrap-Vue component library, but rather a plugin to allow easier control of Bootstrap objects from Vue.

  • This library has zero dependencies (you inject Bootstrap yourself).
  • Supports Vue 3.x and Bootstrap 5.x

Install

npm install vue3-plugin-bootstrap5

In your main.js:


import { createVbPlugin } from 'vue3-plugin-bootstrap5'
import { Alert, Button, Carousel, Collapse, Dropdown, Modal,
  Offcanvas, Popover, ScrollSpy, Tab, Toast, Tooltip } from 'bootstrap'

let vbPlugin = createVbPlugin({ Alert, Button, Carousel, Collapse, Dropdown, Modal,
  Offcanvas, Popover, ScrollSpy, Tab, Toast, Tooltip })

app.use(vbPlugin)

See example main.js

Bootstrap Components in Vue

Alerts

Add v-vb-is:alert to your alert element.

Listen for events on your alert element with: @vb-close-bs-alert="someMethod" and @vb-closed-bs-alert="someMethod".

See AlertExamples.vue

Carousel

Add v-vb-is:carousel to your carousel element.

Listen for events on your carousel element with: @vb-slide-bs-carousel="someMethod" and vb-slide-bs-carousel="someMethod".

See CarouselExamples.vue

Collapse

See CollapseExamples.vue

Dropdowns

See DropdownExamples.vue

Modal

See ModalExamples.vue

Offcanvas

See OffcanvasExamples.vue

Popover

See PopoverExamples.vue

ScrollSpy

See ScrollSpyExamples.vue

Tab (Listgroup, Navs)

See NavTabsExamples.vue

Toast

See ToastExamples.vue

Tooltip

See TooltipExamples.vue

General

Bootstrap JavaScript Objects

When v-vb-is is added to an element, this plugin will assign the raw Bootstrap object(s) to $vb the property.

    <div v-vb-is:modal class="modal" ...>
        ...
    </div>

    // when `v-vb-is` is used on an element, add a ref (eg ref="exampleEl") then use $vb like this:
    this.$refs.exampleEl.$vb.modal.hide()

    // note, this is same as: bootstrap.Modal.getInstance(this.$refs.exampleEl).hide()

Events

Are added to an element using @vb-[eventName]="methodToCall"". Your method will be called by bootstrap when the event it triggered by Bootstrap.

<div ref="exampleModalEvents" 
     v-vb-is:modal 
     @vb-hidden-bs-modal="modalHiddenMethod">...</div>

Bootstrap events are supported (so long as @vb- is specified the same element as v-vb-is:). See bootstrap documentation for the full list for each component.

Cheat Sheet

Component Bootstrap 5 Vue 3 with this plugin
Alerts new bootstrap.Alert(el) v-vb-is:alert
close.bs.alert @vb-close-bs-alert
closed.bs.alert @vb-closed-bs-alert
Carousel new bootstrap.Carousel(el, optionsObj) v-vb-is:carousel="optionsObj"
slide.bs.carousel @vb-slide-bs-carousel="someMethod"
slid.bs.carousel @vb-slid-bs-carousel="someMethod"
Collapse new bootstrap.Collapse(el, optionsObj) v-vb-is:collapse="optionsObj"
show.bs.collapse @vb-show-bs-collapse="someMethod"
shown.bs.collapse @vb-shown-bs-collapse="someMethod"
hide.bs.collapse @vb-hide-bs-collapse="someMethod"
hidden.bs.collapse @vb-hidden-bs-collapse="someMethod"
Dropdowns new bootstrap.Dropdown(el, optionsObj) v-vb-is:dropdown="optionsObj"
show.bs.dropdown @vb-show-bs-dropdown="someMethod"
shown.bs.dropdown @vb-shown-bs-dropdown="someMethod"
hide.bs.dropdown @vb-hide-bs-dropdown="someMethod"
hidden.bs.dropdown @vb-hidden-bs-dropdown="someMethod"
Modal new bootstrap.Modal(el, optionsObj) v-vb-is:modal="optionsObj"
show.bs.modal @vb-show-bs-modal="someMethod"
shown.bs.modal @vb-shown-bs-modal="someMethod"
hide.bs.modal @vb-hide-bs-modal="someMethod"
hidden.bs.modal @vb-hidden-bs-modal="someMethod"
hidePrevented.bs.modal @vb-hidePrevented-bs-modal="someMethod"
Navs & Tabs / List Group new bootstrap.Tab(el) v-vb-is:tab
show.bs.tab @vb-show-bs-tab="someMethod"
shown.bs.tab @vb-shown-bs-tab="someMethod"
hide.bs.tab @vb-hide-bs-tab="someMethod"
hidden.bs.tab @vb-hidden-bs-tab="someMethod"
Offcanvas new bootstrap.Offcanvas(el, optionsObj) v-vb-is:offcanvas="optionsObj"
show.bs.offcanvas @vb-show-bs-offcanvas="someMethod"
shown.bs.offcanvas @vb-shown-bs-offcanvas="someMethod"
hide.bs.offcanvas @vb-hide-bs-offcanvas="someMethod"
hidden.bs.offcanvas @vb-hidden-bs-offcanvas="someMethod"
Popover new bootstrap.Popover(el, optionsObj) v-vb-is:popover="optionsObj"
show.bs.popover @vb-show-bs-popover="someMethod"
shown.bs.popover @vb-shown-bs-popover="someMethod"
hide.bs.popover @vb-hide-bs-popover="someMethod"
hidden.bs.popover @vb-hidden-bs-popover="someMethod"
inserted.bs.popover @vb-inserted-bs-popover="someMethod"
Scrollspy new bootstrap.ScrollSpy(el, optionsObj) v-vb-is:scrollspy="optionsObj"
activate.bs.scrollspy @vb-activate-bs-scrollspy="someMethod"
Package Rankings
Top 18.29% on Npmjs.org
Related Projects