3
私はこのようなtether
とcropper
)ファイルapp.js
に、私は(必要、私はすべてのJavaScriptファイルをパックしたいLaravel 5.3
、 を使用していますlaravelにjavascriptファイルをパックする方法は? :
require('tether');// `tether` is put at the head of `Bootstrap`
require('./bootstrap');
require('cropper');
Vue.component('example', require('./components/Example.vue'));
const app = new Vue({
el: 'body'
});
はその後gulp
を実行している、それは大丈夫です! しかし、クロムbroswerのコンソールでは、2つのエラーがある:それは
PSなぜ
Uncaught Error: Bootstrap tooltips require Tether
Uncaught TypeError: $image.cropper is not a function
は:?
bootstrap
ないBootstrap
、そこresources/assets/js
内のファイルbootstrap.js
であり、Bootstrap
がありますTwitterのUI。
を、あなたは「テザー」から '輸入テザーを試してみました。テザー=テザー; '? – Skysplit
@Skysplitありがとうございます。その問題は解決されました。別のエラーが表示されます: '[Vue警告]:要素が見つかりません:body' – zwl1619
@ zwl1619 Vue 2.0を使用していますか? –