#### ## ## ## ## ## ## ## ######1. jQuery#🎜🎜 ## ##################
1. jquery$ npm install jquery --save-dev
+ 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' }) ] }
import $ from 'jquery' ;
관련 권장 사항: "bootstrap 항목 튜토리얼"
4. 설치가 성공적으로 완료되었는지 테스트하고 '123'이 나타나는지 확인하세요
<template> <div> Hello world! </div> </template> <script> $(function () { alert(123); }); export default { }; </script> <style> </style>
1을 도입합니다. Bootstrap
$ npm install --save-dev bootstrap
2를 설치합니다. 🎜🎜#
import './node_modules/bootstrap/dist/css/bootstrap.min.css'; import './node_modules/bootstrap/dist/js/bootstrap.min.js';
<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>
위 내용은 vue에 부트스트랩을 도입하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!