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 可把源码拷出来单独写在文件中即可

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-16
  • 2021-10-03
  • 2022-12-23
  • 2021-06-27
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-23
  • 2021-10-05
  • 2021-08-07
  • 2022-12-23
相关资源
相似解决方案