在 vue 中引入 bootstrap 的两种方式:使用 cdn:在 html 头部添加 css 链接,bootstrap 将自动应用于所有组件。使用 npm:安装 bootstrap 包,然后在 vue 文件中使用 import 语句导入 bootstrap 和 jquery。
如何在 Vue 中引入 Bootstrap
在 Vue 中引入 Bootstrap 有两种主要方式:
方式一:使用 CDN
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
方式二:使用 npm
立即学习“前端免费学习笔记(深入)”;
npm install bootstrap
import 'bootstrap';
import 'jquery';
详细展开
注意: