溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue引入bootstrap的方法

發(fā)布時間:2021-02-22 16:09:52 來源:億速云 閱讀:290 作者:清風 欄目:開發(fā)技術(shù)

本文將為大家詳細介紹“vue引入bootstrap的方法”,內(nèi)容步驟清晰詳細,細節(jié)處理妥當,而小編每天都會更新不同的知識點,希望這篇“vue引入bootstrap的方法”能夠給你意想不到的收獲,請大家跟著小編的思路慢慢深入,具體內(nèi)容如下,一起去收獲新知識吧。

Vue的優(yōu)點

Vue具體輕量級框架、簡單易學、雙向數(shù)據(jù)綁定、組件化、數(shù)據(jù)和結(jié)構(gòu)的分離、虛擬DOM、運行速度快等優(yōu)勢,Vue中頁面使用的是局部刷新,不用每次跳轉(zhuǎn)頁面都要請求所有數(shù)據(jù)和dom,可以大大提升訪問速度和用戶體驗。

一、引入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' ;

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、查看效果

如果你能讀到這里,小編希望你對“vue引入bootstrap的方法”這一關(guān)鍵問題有了從實踐層面最深刻的體會,具體使用情況還需要大家自己動手實踐使用過才能領(lǐng)會,如果想閱讀更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI