1.0.0 • Published 1 year ago

bootstrap-esm v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

bootstrap-esm

ES Module version of Bootstrap v5 with tree shaking support for optimized code.

Notes: This package is intended for use by bundlers.

Bootstrap version used: v5.3.3

Why ?

Usage / Example

npm install bootstrap-esm
import { Tooltip } from 'bootstrap-esm'

document.querySelectorAll('[data-bs-toggle="tooltip"]').forEach((element) => {
  new Tooltip(element)
})