JIYIK CN >

Current Location:Home > Learning > WEB FRONT-END > Vue >

Introducing the bootstrap framework into the vue project

Author:JIYIK Last Updated:2025/02/26 Views:

Bootstrap is a popular front-end framework that provides a wealth of CSS and JavaScript components to help developers quickly build modern responsive websites and applications. Introducing the Bootstrap framework in a Vue project can provide better styling and interactive effects, while also improving development efficiency. This article will introduce how to introduce the Bootstrap framework in a Vue project.

  1. Install Bootstrap

First, you need to install Bootstrap. You can use npm or yarn to install it. Enter the following command in the command line:

npm install bootstrap

or

yarn add bootstrap

After the installation is complete, Bootstrap's CSS and JavaScript files will be downloaded to the node_modules directory.

  1. Import Bootstrap

In a Vue project, you can import Bootstrap in the main.js file. Before importing, you need to install jQuery and Popper.js. Enter the following command in the command line:

npm install jquery popper.js --save

or

yarn add jquery popper.js

After the installation is complete, open the main.js file and add the following code:

import 'jquery'
import 'popper.js'
import 'bootstrap/dist/css/bootstrap.min.css'
import 'bootstrap/dist/js/bootstrap.min.js'

Now you can use Bootstrap in your Vue project.

  1. Using Bootstrap

It is very simple to use Bootstrap components and styles in Vue components. Just follow the Bootstrap documentation. For example, to use Bootstrap's button component in a Vue component, you can add the following code to the template:

<button class="btn btn-primary">Click me</button>

This way you can use Bootstrap's button components in Vue components.

For example:

Suppose we have a Vue project and need to use Bootstrap's navigation bar component. First, enter the following command in the command line to install Bootstrap:

npm install bootstrap

Then, add the following code to the main.js file:

import 'jquery'
import 'popper.js'
import 'bootstrap/dist/css/bootstrap.min.css'
import 'bootstrap/dist/js/bootstrap.min.js'

Next, add the following code to the component’s template:

<nav class="navbar navbar-expand-lg navbar-light bg-light">
  <a class="navbar-brand" href="#">Vue Bootstrap</a>
  <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
    <span class="navbar-toggler-icon"></span>
  </button>
  <div class="collapse navbar-collapse" id="navbarNav">
    <ul class="navbar-nav">
      <li class="nav-item active">
        <a class="nav-link" href="#">Home</a>
      </li>
      <li class="nav-item">
        <a class="nav-link" href="#">About</a>
      </li>
      <li class="nav-item">
        <a class="nav-link" href="#">Contact</a>
      </li>
    </ul>
  </div>
</nav>

In this way, you can use Bootstrap's navigation bar component in the Vue project.

Summarize:

Introducing the Bootstrap framework into the Vue project can provide better styling and interactive effects, and can also improve development efficiency. After installing Bootstrap, you can introduce Bootstrap in the main.js file and follow the Bootstrap documentation in the Vue component.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Configuring Apache Web Server on Ubuntu and Debian

Publish Date:2025/04/05 Views:176 Category:OPERATING SYSTEM

This article shows you how to install Apache web server on Ubuntu and Debian, set it up, and access the access logs. Apache Web Server in Ubuntu and Debian Apache HTTP Server is a free and open source web server that is very popular. More t

How to use Docker to image a Node.js web application

Publish Date:2025/03/26 Views:107 Category:Docker

Docker is a containerization platform that simplifies the packaging and execution of applications. Containers run as independent processes with their own file systems, but share the kernel of their host machine. Docker has attracted much at

My understanding of webservice is this

Publish Date:2025/03/18 Views:150 Category:NETWORK

Recently, I encountered such a project at work (temporarily named Project A). Project A itself was developed in PHP, but its data came from another project developed in Java (temporarily named Project B). Project A could not operate the dat

Which technology do you choose to implement the web chat room?

Publish Date:2025/03/18 Views:62 Category:NETWORK

With the rise of HTML5 Websockets, web chat applications are becoming more and more popular. Recently, I am working on a mobile web application, the core function of which is to implement web chat on the mobile phone. Of course, the functio

How to redirect a website from HTTP to HTTPS

Publish Date:2025/03/16 Views:117 Category:NETWORK

HTTPS is a protocol for secure communication over computer networks and is widely used on the Internet. More and more website owners are migrating from HTTP to HTTPS, mainly due to the following 5 reasons: Google announced that websites usi

How to avoid soft 404 in the website during SEO

Publish Date:2025/03/17 Views:136 Category:NETWORK

This article shares an SEO problem, soft 404. A status code we often see on websites is 404. Whether we develop a website or not, this is a problem we have to face. What is a soft 404? Before talking about soft 404, we must first understand

Webpack packages ES6 and CommonJs mixed React

Publish Date:2025/03/02 Views:179 Category:React

This article mainly introduces how to use webpack to package and compile React mixed with ES6 and CommonJs. It is a process of upgrading the React environment.

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial