vue3使用Bootstrap

使用yarn下载
yarn add bootstrap

使用npm下载
npm install bootstrap
Popper.js 是 Bootstrap 4 的依赖项,用于显示弹出窗口。它是引导程序的对等依赖项,这意味着它是引导程序需要但在安装时不包含在自身中的东西。所以要安装 popper.js 运行

npm install popper.js --save

Bootstrap 5需要“Popper.js Core ”,而不是 Popper.js。你应该运行这个:

npm install @popperjs/core --save

在main.js引入

import "bootstrap";
import "bootstrap/dist/css/bootstrap.css"

完工,没有下载依赖有jquery的可以看上篇文章

你可能感兴趣的:(vue3使用Bootstrap)