web-dev-qa-db-fra.com

Comment inclure Bootstrap-Vue dans Laravel

Comment puis-je installer/importer/inclure Bootstrap Vue dans mon projet laravel? Je suis nouveau dans Vue, je sais installer dans un Vue JS application, mais comment puis-je l'ajouter 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

Exécutez simplement npm i vue bootstrap-vue bootstrap dans le dossier où vous avez package.json ou modifiez manuellement package.json. Ensuite, vous devez ajouter dans ./resources/assets/js/bootstrap.js

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

Vue.use(BootstrapVue)
1
Manu

Installez votre package avec

npm install bootstrap-vue

ou

yarn add bootstrap-vue

Ensuite, vous pouvez inclure globalement votre bibliothèque en ajoutant cette ligne dans vos ressources\js\app.js après window.Vue = require('vue');

Vue.use(require('bootstrap-vue'));

Vous pouvez jeter un oeil à l'officiel documentation Vue pour l'installation des plugins

0
Andrea Mauro