quill-image-drop-module & quill-image-resize-module 报错'imports' of undefined的解决方法


1. vue引入组件quill-image-drop-module 与 quill-image-resize-module来调节富文本quill时 会报错 import underfined等错误 
可以在配置文件 webpack.base.conf 中的module.rules模块 加入如下代码:
{
        test: /\.js$/,
        exclude: /node_modules(?!\/quill-image-drop-module|quill-image-resize-module)/,
        loader: 'babel-loader'
      }

在plugins模块添加:
'window.Quill': 'quill/dist/quill.js',
      'Quill': 'quill/dist/quill.js'
即可。
若找不到文件ImageDrop 可把源码拷出来单独写在文件中即可

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM