您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)如何在vue中引入bootstrap,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
Vue是一款友好的、多用途且高性能的JavaScript框架,使用vue可以創(chuàng)建可維護(hù)性和可測試性更強(qiáng)的代碼庫,Vue允許可以將一個網(wǎng)頁分割成可復(fù)用的組件,每個組件都包含屬于自己的HTML、CSS、JavaScript,以用來渲染網(wǎng)頁中相應(yīng)的地方,所以越來越多的前端開發(fā)者使用vue。
一、引入jquery
步驟:
1. 安裝jquery
$ npm install jquery --save-dev
2.在webpack.config.js 添加內(nèi)容
+ const webpack = require("webpack");module.exports = { entry: './index.js', output: { path: path.join(__dirname, './dist'), publicPath: '/dist/', filename: 'index.js' }, + plugins: [ new webpack.ProvidePlugin({ jQuery: 'jquery', $: 'jquery' }) ]}
3.在入口文件index.js 里面添加內(nèi)容
import $ from 'jquery' ;
相關(guān)推薦:《bootstrap入門教程》
4.測試一下是否安裝成功,看看能否彈出'123'
<template> <div> Hello world! </div></template><script>$(function () { alert(123); }); export default { };</script><style></style>
二、引入Bootstrap
1.安裝Bootstrap
$ npm install --save-dev bootstrap
2.在入口文件index.js里引入相關(guān)
import './node_modules/bootstrap/dist/css/bootstrap.min.css';import './node_modules/bootstrap/dist/js/bootstrap.min.js';
3.添加一段Bootstrap代碼
<div class="btn-group" role="group" aria-label="..."> <button type="button" class="btn btn-default">Left</button> <button type="button" class="btn btn-default">Middle</button> <button type="button" class="btn btn-default">Right</button> </div>
4.運(yùn)行,查看效果這些按鈕已經(jīng)變成Bootstrap按鈕組了。
關(guān)于如何在vue中引入bootstrap就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。