這次帶給大家如何操作vue-cli專案中使用bootstrap,操作vue-cli專案中使用bootstrap的注意事項有哪些,以下是實戰案例,一起來看一下。
在一個html頁面中加入bootstrap是很方便,就是一般的將css和js檔案透過Link和Script標籤就行。
那麼在一個用vue-vli產生的前端專案中如何加入?因為框架不一樣了,所以略微要適應一下。
安裝外掛程式
npm install jquery --save npm install bootstrap --save npm install popper.js --save
設定webpack.base.conf.js
//在顶部添加 const webpack = require('webpack')
//在module.exports = {}末尾添加下面代码 module.exports = { ... plugins: [ new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery" }) ] }
main.js中新增
import $ from 'jquery' import 'bootstrap'
測試jquery
//在vue文件中添加测试代码 <script> $(function () { alert('234') }) export default { name: 'App' } </script>
測試bootstrap
<template> <p class="container"> <p class="row"> <p class="col-md-6"> <button class="btn btn-primary">测试按钮</button> </p> </p> </p> </template>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是如何操作vue-cli專案中使用bootstrap的詳細內容。更多資訊請關注PHP中文網其他相關文章!