web-dev-qa-db-ja.com

Bootstrap-VueをLaravelに含める方法

laravelプロジェクトにどのようにインストール/インポート/インクルード Bootstrap Vue できますか?私はVueの初心者です。Vue JSアプリケーションにインストールする方法は知っていますが、laravelを追加するにはどうすればよいですか?

app.scss

// Fonts
@import url("https://fonts.googleapis.com/css?family=Nunito");

// Variables
@import "variables";

// Bootstrap
@import "~bootstrap/scss/bootstrap";

@import "node_modules/bootstrap/scss/bootstrap";
@import "node_modules/bootstrap-vue/src/index.scss";

.navbar-laravel {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

app.js

    /**
     * First we will load all of this project's JavaScript dependencies which
     * includes Vue and other libraries. It is a great starting point when
     * building robust, powerful web applications using Vue and Laravel.
     */

    require("./bootstrap")

    window.Vue = require("vue")

    import BootstrapVue from "bootstrap-vue" //Importing

    Vue.use(BootstrapVue) // Teslling Vue to use this whole application

    /**
    * The following block of code may be used to automatically register your
    * Vue components. It will recursively scan this directory for the Vue
    * components and automatically register them with their "basename".
    *
    * Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
    */

    // const files = require.context('./', true, /\.vue$/i);
    // files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default));

    Vue.component(
        "example-component",
        require("./components/ExampleComponent.vue").default
    )

    /**
    * Next, we will create a fresh Vue application instance and attach it to
    * the page. Then, you may begin adding components to this application
    * or customize the JavaScript scaffolding to fit your unique needs.
    */

    const app = new Vue({
        el: "#app"
    })
4
Santanu Biswas

Package.jsonがあるフォルダ内でnpm i vue bootstrap-vue bootstrapを実行するか、package.jsonを手動で変更します。次に、./resources/assets/js/bootstrap.jsに追加する必要があります

import Vue from 'vue'
import BootstrapVue from 'bootstrap-vue'

Vue.use(BootstrapVue)
1
Manu

パッケージをインストールする

_npm install bootstrap-vue
_

または

_yarn add bootstrap-vue
_

次に、この行をresources\js\app.jswindow.Vue = require('vue');の後に追加して、ライブラリをグローバルに含めることができます

_Vue.use(require('bootstrap-vue'));
_

プラグインのインストールについては、公式の Vueドキュメント をご覧ください。

0
Andrea Mauro