
uiv
Bootstrap 3 Components implemented by Vue.
Lightweight
All components ~20KB Gziped.
Vue 3
Vue 3 supported.
SSR
Server-side rendering supported.
TIP
This version of uiv is for Vue.js v3, if you're looking for the old one for v2, please visit uiv-v1.wxsm.space.
Install
$ npm i uiv --save
Usage
// main.js
import 'bootstrap/dist/css/bootstrap.min.css'
import { createApp } from 'vue'
import * as uiv from 'uiv'
const app = createApp({ ... })
app.use(uiv)
app.mount(...)