Quick Guide with Bootstrap
Get started with Vue MDBootstrap by including it into your project using NPM/YARN and leverage Bootstrap v5 CSS framework to build responsive and mobile-friendly apps faster.
Install Components
In this section we will introduce how to install and configure the components on your Vue application. We assume you have created your project using Vite + Vue. Please read the manual on the official website to understand in depth how to set up a project.
bash
npm install vue-mdbootstrap --savebash
yarn add vue-mdbootstrapConfigure Vite Plugin
ts
import vue from '@vitejs/plugin-vue';
import { fileURLToPath, URL } from 'node:url';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [vue()],
resolve: {
alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) },
},
});Configure Main HTML
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous"/>
<title>Your Page Title</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>Component Bundle
Setup application bootstrap
ts
// Import global function to register the components and create Vue application
import { createVueMdb } from 'vue-mdbootstrap';
// Import main component or page layout
import App from '@/App.vue';
// Import router navigation.
// Read [vue-router manual](https://router.vuejs.org/) on how to setup the navigation
import router from '@/router';
// Import core css stylesheet
import 'vue-mdbootstrap/styles';
// Import theme css stylesheet
import 'vue-mdbootstrap/theme-light';
// Optional, import css color utilities for styling background, border and text
// import 'vue-mdbootstrap/styles-color';
// Main code start here...
const app = createVueMdb(App);
app.use(router).mount('#app');Individual Component
Register a component plugin
There are cases in your project that you only need some components of Vue MDBootstrap and for this you can add them as follows:
ts
import { createApp } from 'vue';
// Import Button component plugins
import { BsButtonPlugin } from 'vue-mdbootstrap';
// Import main component or page layout
import App from '@/App.vue';
// Import router navigation.
// Read [vue-router manual](https://router.vuejs.org/) on how to setup the navigation
import router from '@/router';
// Import core css stylesheet
import 'vue-mdbootstrap/styles';
// Import theme css stylesheet
import 'vue-mdbootstrap/theme-light';
// Optional, import css color utilities for styling background, border and text
// import 'vue-mdbootstrap/styles-color';
// Your main code
const app = createApp(App);
// Registers the Button component plugin
app.use(BsButtonPlugin);
app.mount('#app');Register component plugins manually
ts
import { createApp } from 'vue';
// Import all UI component plugins
import * as _plugins from 'vue-mdbootstrap';
// Import main component or page layout
import App from '@/App.vue';
// Import router navigation.
// Read [vue-router manual](https://router.vuejs.org/) on how to setup the navigation
import router from '@/router';
// Import core components css stylesheet
import 'vue-mdbootstrap/styles';
// Import theme css stylesheet
import 'vue-mdbootstrap/theme-light';
// Optional, import css color utilities for styling background, border and text
// import 'vue-mdbootstrap/styles-color';
// Your main code
const app = createApp(App);
// Registers all the UI component plugins
for (const key of Object.keys(_plugins)) {
if (key.startsWith('Bs') && key.endsWith('Plugin')) {
app.use(_plugins[key]);
}
}
app.mount('#app');