Home > Web Front-end > JS Tutorial > body text

Detailed explanation of steps to use bootstrap in vue-cli project

PHPz
Release: 2018-10-13 16:14:19
Original
6277 people have browsed it

This time I will bring you a detailed explanation of the steps for using bootstrap in the vue-cli project. What are the precautions for using bootstrap in the vue-cli project? The following is a practical case, let's take a look.

【Related video recommendation: Bootstrap tutorial

Install plug-in

npm install jquery --save
npm install bootstrap --save
npm install popper.js --save
Copy after login

Configure webpack.base.conf.js

//在顶部添加
const webpack = require('webpack')
Copy after login
//在module.exports = {}末尾添加下面代码
module.exports = {
...
plugins: [
  new webpack.ProvidePlugin({
   $: "jquery",
   jQuery: "jquery"
  })
 ]
}
Copy after login

Add in main.js

import $ from 'jquery'
import 'bootstrap'
Copy after login

Test jquery

//在vue文件中添加测试代码
<script>
$(function () {
 alert('234')
})
export default {
 name: 'App'
}
</script>
Copy after login

Test bootstrap

<template>
<p class="container">
  <p class="row">
    <p class="col-md-6">
      <button class="btn btn-primary">测试按钮</button>
    </p>
  </p>
</p>
</template>
Copy after login

I believe you have mastered the method after reading the case in this article, more exciting Please pay attention to other related articles on php Chinese website!

Recommended reading:

JS Gets the User’s Current Location

##How AngularJs Prevents XSS Attacks

The above is the detailed content of Detailed explanation of steps to use bootstrap in vue-cli project. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template