如何使用 laravel-mix 将 mdbootstrap vue 加载到 Laravel 5?
How to load mdbootstrap vue into Laravel 5 with laravel-mix?
我正在尝试将 mdbootstrap vue 安装到 Laravel 5.6 项目中,但我真的不明白我应该怎么做。
如果有人能给我一点教程,那就太好了;-)
试试这个(更新)...
(假设你已经安装了laravel)
转到您的项目目录并执行:
npm install --save mdbvue
您还需要:
npm install --save-dev babel-preset-stage-2
接下来转到 resources/js/bootstrap.js
并在 require('bootstrap');
下添加 require('mdbvue');
它应该看起来像这样:
/**
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
* for JavaScript based Bootstrap features such as modals and tabs. This
* code may be modified to fit the specific needs of your application.
*/
try {
window.$ = window.jQuery = require('jquery');
require('bootstrap');
require('mdbvue'); //<---this is what you need to add
} catch (e) {}
下一步到resources/sass/app.scss
并在bootstrap导入下添加MDB css,你可能还需要导入font-awesome css:
// Material Design Bootstrap
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import '~bootstrap/scss/bootstrap';
@import "~mdbvue/build/css/mdb.css";
现在要编译您的 app.css
和 app.js
文件,只需执行 npm run dev
有了这个,一切都应该起来了,运行 你可以自由使用 MDBvue
组件或简单地使用 MDB
jQuery 版本。
这对我的 Laravel 5.7 项目有用。希望这会有所帮助。
我正在尝试将 mdbootstrap vue 安装到 Laravel 5.6 项目中,但我真的不明白我应该怎么做。
如果有人能给我一点教程,那就太好了;-)
试试这个(更新)...
(假设你已经安装了laravel)
转到您的项目目录并执行:
npm install --save mdbvue
您还需要:
npm install --save-dev babel-preset-stage-2
接下来转到 resources/js/bootstrap.js
并在 require('bootstrap');
下添加 require('mdbvue');
它应该看起来像这样:
/**
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
* for JavaScript based Bootstrap features such as modals and tabs. This
* code may be modified to fit the specific needs of your application.
*/
try {
window.$ = window.jQuery = require('jquery');
require('bootstrap');
require('mdbvue'); //<---this is what you need to add
} catch (e) {}
下一步到resources/sass/app.scss
并在bootstrap导入下添加MDB css,你可能还需要导入font-awesome css:
// Material Design Bootstrap
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import '~bootstrap/scss/bootstrap';
@import "~mdbvue/build/css/mdb.css";
现在要编译您的 app.css
和 app.js
文件,只需执行 npm run dev
有了这个,一切都应该起来了,运行 你可以自由使用 MDBvue
组件或简单地使用 MDB
jQuery 版本。
这对我的 Laravel 5.7 项目有用。希望这会有所帮助。