##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' ;
<template> <div> Hello world! </div> </template> <script> $(function () { alert(123); }); export default { }; </script> <style> </style>
1. Bootstrap のインストール
$ npm install --save-dev bootstrap
2エントリ ファイルindex.js に関連する
import './node_modules/bootstrap/dist/css/bootstrap.min.css'; import './node_modules/bootstrap/dist/js/bootstrap.min.js';
を導入します 3. ブートストラップ コード
<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はブートストラップを使用できますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。