您好,登錄后才能下訂單哦!
這篇文章主要介紹Vue中cli3如何引入bootstrap,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
在 vue 項目中引入 bootstrap,首先要引入兩個依賴:jQuery 和 popper
安裝命令如下:
cnpm install bootstrap --save-dev cnpm install jquery --save-dev cnpm install popper.js --save-dev
默認安裝最新版本,如果想要安裝 bootstrap 的 V3 版本(依賴 less),可以:
cnpm install bootstrap@3 --save-dev
或者,采用可視化窗口安裝
1、找到:項目> 依賴> +安裝依賴> 運行依賴
搜索并安裝 jquery 和 popper.js
2、找到:項目> 依賴> +安裝依賴> 開發依賴
搜索并安裝 bootstrap
在 mian.js 頁面,寫以下代碼
// 引入jQuery、bootstrap import $ from 'jquery' import 'bootstrap' // 引入bootstrap樣式 import 'bootstrap/dist/css/bootstrap.min.css' import 'bootstrap/dist/js/bootstrap.min.js' // 全局注冊 $ Vue.prototype.$ = $
在 vue.config.js 中,寫如下代碼(如果沒有 vue.config.js ,則在 package.json 同級目錄下手動新建)
const webpack = require("webpack") module.exports = { // 配置插件參數 configureWebpack: { plugins: [ // 配置 jQuery 插件的參數 new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery', 'window.jQuery': 'jquery', Popper: ['popper.js', 'default'] }) ] } }
然后,就可以使用了
測試bootstrap
<template> <div class="container"> <div class="row"> <div class="col-md-6"> <button class="btn btn-primary">測試按鈕</button> </div> </div> </div> </template>
以上是“Vue中cli3如何引入bootstrap”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。