我想在我的admin-lte
应用程序中使用laravel
。为此我想要这个js dependecy,我在我的bootstrap.js
(laravel-mix)中这样做。
但是没有加载js,所以对于测试我在我的bootstrap.js文件中写了console.log('bootstrap.js loaded')
,但测试没有打印。
bootstrap.js是默认加载的吗?我和jquery
有同样的问题,它没有加载,这是不正常的我认为。
(资源/资产/ JS / bootstrap.js)
try {
window.$ = window.jQuery = require('jquery');
require('bootstrap');
} catch (e) {}
require('admin-lte')
console.log('bootstrap.js loaded')
(webpack.mix.js)
mix
.disableNotifications()
.js('resources/assets/js/app.js', 'public/js')
.sass('resources/assets/sass/app.scss', 'public/css');
我必须在我的bootstrap.js
中要求app.js
。一切正常!