我想在我的admin-lte
应用中使用laravel
。
为此,我需要这个js依赖,我在bootstrap.js
(laravel-mix)中做到了。
但是未加载js,因此为了进行测试,我在bootstrap.js文件中写了console.log('bootstrap.js loaded')
,但未打印测试。
boostrap.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');
答案 0 :(得分:0)
我必须在bootstrap.js
中输入app.js
。和所有的工作!