@coliz/vue-base-controls
v0.0.15
Published
Here you'll find a handful of Bootstrap-based web UI controls for use in Vue.JS projects.
Readme
Vue Base Controls
Here you'll find a handful of Bootstrap-based web UI controls for use in Vue.JS projects.
Installing
You can install the library the usual way, for example with pnpm:
pnpm add @coliz/vue-base-controlsRegistering
There is a Vue plugin available for apps to register all components at once.
Vue.js
In a Vue.js app, import the library and then call use on the application instance
import controls from '@coliz/vue-base-controls'
createApp(App)
.use(controls)
.mount('#app')Nuxt
In a Nuxt app, you'll create a simple Nuxt plugin in the plugins directory, which handles this:
import controls from '@coliz/vue-base-controls'
export default defineNuxtPlugin(nuxtApp => {
nuxtApp.vueApp.use(controls)
})Styles
Generally, this library tries to avoid applying unique style. Either we leverage Bootstrap styles, or leave that to you as the user. Still, there are some cases where light styling has been applied. You can get these like so:
@import "@coliz/vue-base-controls/dist/vue-base-controls.css"