vue 引入quill-image-resize-module 插件报错

vue 引入quill-image-resize-module 插件报错

TypeError: Cannot read properties of undefined (reading ‘imports’)
vue 引入quill-image-resize-module 插件报错_第1张图片

解决方法:

编辑 vue.config.js 文件

const webpack = require('webpack')

module.exports = {
  configureWebpack: {
    plugins: [
      new webpack.ProvidePlugin({
        'window.Quill': 'quill/dist/quill.js',
        Quill: 'quill/dist/quill.js'
      })
    ]
  }
}

编辑完成,需要重新运行一下。npm run serve。

你可能感兴趣的:(webpack,JS,image-resize,vue引入插件报错)