How can I solve Uncaught TypeError: Cannot read property 'call' of undefined?

How can I solve Uncaught TypeError: Cannot read property 'call' of undefined?

我在我的项目中实现了 summernote

我的项目使用 laravel 5.3 & vue.js 2

我的 javascript 代码是这样的:

$(function () {
    $('.summernote').summernote({
        height: 200
    });
});

我编译我的项目使用 laravel-elixir

如果我 运行 : gulp watch 和 运行 我的表单(textarea 使用 summernote),没有错误

但是如果我运行:gulp --production和运行我的表单(textarea使用summernote),存在错误:

Uncaught TypeError: Cannot read property 'call' of undefined

如何解决错误?

根据 this Post autosize.min.js 上有错误 尝试:

autosize.js 而不是 autosize.min.js.

我post我的评论回答以备将来参考。